Actions inside sequential blocks inside iterator action nodes are logged out of order

I’m not 100% sure if this is a bug or working as intended, but with a setup like this:

while{
__action1
__sequential block{
____action2
__}
}

The log shows execution like this of action1 and action2 for 3 iterations:
action1
action2
action2
action2
action1
action1

while I would expect this result:
action1
action2
action1
action2
action1
action2

If I actually do some work in action 1 and 2 (like updating an int variable) it seems like they are actually executed the way I would expect so it’s just the logs that are confusing. Nevertheless, I spent a good hour trying to figure out what I had done wrong :sweat_smile:

See attached photos of my action setup and logs
Action setup

Hello Øyvind,

We have identified a similar issue that has been patched in the development version of Appfarm Create.

Could you please provide us with the version of Appfarm Create you are currently using? You can find this information by hovering over the small “i” in the top-right corner of your environment on the deploy page.

Also, does issue occur in services only or apps as well?

bilde

Thanks,
Erik

image

This log is from invoking a service endpoint.

Thank you for the information, I will pass it on to the dev team.