Closed maxfischer2781 closed 7 years ago
Chaining chainlets directly is not suitable for forking chains. Currently, chains inside a fork are not created as expected:
start >> a >> (b1 >> b2, c1)
Creates the links:
start >> a a >> c1 b1 >> b2 a >> b2
In this case, b1 is never used. The last link should have been a >> b1. It may be suitable to have a (temporary?) overarching chain object.
b1
a >> b1
Tests are successful.
Chaining chainlets directly is not suitable for forking chains. Currently, chains inside a fork are not created as expected:
Creates the links:
In this case,
b1
is never used. The last link should have beena >> b1
. It may be suitable to have a (temporary?) overarching chain object.