Hello
I noticed that Dagger is building things sequentially when I'm chaining Dagger Functions.
I'm running "dagger call job-group out".
The first function (job-group) returns multiple objects. A second chained function (out) wants to evaluate everything. And the build process will not build the objects in parallel.
Is this expected?
I added an optional sync to the first function ("dagger call job-group --sync out") to work around this issue.
Is there a better way to fix this?