brief-notebook-42882
08/15/2022, 6:22 PM'failed to register new resource <INSERT_CLOUD_RESOURCE_NAME_HERE>: Resource monitor is terminating'
Additionally, I was able to see this error once, implying that there's only one instance of the engine running in my API:
Error: Program run without the Pulumi engine available; re-run using the `pulumi` CLI
To be sure, my deployment works just fine when the function is called once, further hinting at the notion that I'm referencing an already busy process. I'd love to know if there's a way to force Pulumi to spin up another process or instance whenever a new deployment is requested, but I could not find any documentation around it, so I'd love some pointers!salmon-account-74572
08/15/2022, 6:39 PMbrief-notebook-42882
08/15/2022, 6:55 PMInlineProgramArgs
object based on information received from an HTTP POST, and then feeding that object into a LocalWorkspace.createStack(args)
call. My expectation is that every time this is called, a new Stack instance is created for me. Am I offbase with this assumption?echoing-dinner-19531
08/15/2022, 8:09 PMbrief-notebook-42882
08/16/2022, 7:50 PMfork
method seems to work fine enough. Less elegant, but working!echoing-dinner-19531
08/17/2022, 7:50 AM