Hi All, When running `pulumi.up` (using automatio...
# typescript
b
Hi All, When running
pulumi.up
(using automation api) I'm trying to run the operation in parallel This is my code and it looks like it’s running sequential and not parallel
Copy code
const opts: UpOptions = {
      onEvent: logEventUpdateOutput,
      parallel: 2147483647,
    }
    const upRes: UpResult = await stack.up(opts)
all advice is welcome Is there something that I can do in order to have faster deployment ? to make it run in parallel ?