If I put an async inside a target, and if i call several time this target the action inside the target are strange.
default target contains:
- run target [ test ]
- run target [ test ]
test target contains:
- action 1
- async
- action 2
- action 3
actual log/behaviour:
- test
- action1
- async
- action 2
- action 3
- action 2
- action 3
- test
- action1
wanted log/behaviour:
- test
- action1
- async
- action 2
- action 3
- test
- action1
- async
- action 2
- action 3
note:
- using finalbuilder 8.0.0.1432 pro edition
- if i disable async in async properties actions are not shuffled anymore.
- on windows 8.1 pro 64
Hi Denis,
The behaviour your seeing is a logging issue. The execution is occurring how you expect.
When logging an async group it has to locate its parent in the log tree. This is different to other events as an async event could come in at any time after its parent (async group) has started. There must be an issue in the locating of this parent async group action.
Hi Denis,
The fix for the above behaviour is located in the following release.
http://downloads.finalbuilder.com/downloads/finalbuilder/800/FB800_1505.exe
All right, thanks, FB800_1505.exe fixed the problem which wasn’t one .