has anyone had issues with pulumi preview/up in th...
# general
g
has anyone had issues with pulumi preview/up in the last week just hanging? We spotted it 7 days ago and initially thought it was our CI server but it’s not that and we think its pulumi
b
is a stack with helm charts in it? I had that and upgrading all the node_modules and pulumi itself resolved it
w
There have been some hangs when running on Node 12.11 or higher. We fixed this in recent releases, but there have been a couple reports of issues still which we’re still trying to narrow down. Moving to an earlier version of Node should help, or else see https://www.pulumi.com/docs/troubleshooting/#synchronous-call.
g
we use latest pulumi and latest node 12.x
Copy code
RUN curl -sL <https://deb.nodesource.com/setup_12.x> | bash -
@busy-umbrella-36067 no charts as far as i know
have updated everything in package.json too
will try that provider stuff @white-balloon-205
b
@glamorous-waitress-51149 try downgrading your node version and clearing out
~/.pulumi
along with a full wipe of
node_modules
before you run
npm/yarn
again
g
any recommendation on node version?
this is in a docker container now so hopefully each docker run should be a new env
w
Anything before 12.11. See https://github.com/pulumi/pulumi/issues/3309 for some background.
g
bingo!
downgraded to node 10
no more hanging
w
Great - definitely still working on identifying whats causing continued hangs on Node 12.11+.
g
👍