You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@ericrsmith35 I was getting flow errors because one of the dates needed to be before the other, and I have a validation to enforce that. I debugged the flow and found that the date to datetime conversion output was giving unexpected results.
For Example, 4/8/2021 got output as 4/27/2021
I came here to see if this had been reported and found this open issue. I tested the proposed solution of moving the response variable inside the for loop and re-tested the flow that was throwing errors, and all of the records were processed without any errors this time.
I created PR #1459 to patch this issue, but it needs to be reviewed since I am not a contributor.
How to use GitHub
Steps to reproduce
Expected behaviour
It should properly save the right value for each record.
Actual behaviour
It saves the value of the last record through on all records.
Line 46 needs to be moved inside the for loop. Then it works properly.
The text was updated successfully, but these errors were encountered: