I’ve gate a failed deployment, I cannot `up` the f...
# general
i
I’ve gate a failed deployment, I cannot
up
the fix, and it seems I cannot
destroy
either.
error: [409] Conflict: Another update is currently in progress
. I also tried refresh but of course it fails due to the original error. What is the proper way to force a destroy?
b
Have you tried a
pulumi stack export > stack.json
to remove any pending changes?
there should be a
pending
key or something in the json once you export it
i
export worked
thanks, pending must have finally resolved, I’m able to destroy now
b
Sweet, if you did have to modify it, you can just re-import it after with
pulumi stack import --file stack.json
i
ok, thanks - good to know
c
pulumi cancel
You need to halt whatever other deploy is in progress and take back the lease.
👍 2