transflow icon indicating copy to clipboard operation
transflow copied to clipboard

Fix steps defined by step() are reversed

Open wojtha opened this issue 9 years ago • 0 comments

Fixes issue #2

Transflow(container: operations) { 
   steps(:aggregate, :persist)
 }
# order is :aggregate, :persist

Transflow(container: operations) {
    step(:aggregate, publish: true)
    step(:persist, publish: true)
}
# order is :persist, :aggregate

wojtha avatar Nov 01 '15 00:11 wojtha