This message was deleted.
# general
s
This message was deleted.
l
strace and the like...? I'd probably start on the assumption that it's a back-end issue. Can you connect to whatever backend you're using?
f
@little-cartoon-10569 thanks for answering. I don’t understand backend in this context, i’m running a
pulumi up
and it is unable to even show the preview, that’s all
l
Where are you storing your stack? Locally, S3, app.pulumi.com?
f
on pulumi.com yes
l
Maybe try connecting to that from the machine? Check the same ports, addresses, etc.? Maybe a new firewall has appeared?
Try creating a new project using pulumi.com, and a new project using local state. Do they both work?
f
that’s a container dedicated for this, I use it since more than a year without any issue, I can reach pulumi.com , it was working this morning and nothing changed since then
I have another container based on the same image for another project working just fine still
don’t you know any way to get some better debug trace from the
pulumi
program ? it is usually pretty good at telling what’s wrong when there’s a problem.
I can confirm that’s a code (module/plugin ?) related issue, even locally this project does not work, even going back to old commits that worked before obviously (and purging
node_modules
to ensure the same context) while another project has no problem doing an update, crossing out a backend issue. Doesn’t really makes sense. I’ll try to investigate further, but a better debug log would really help.
l
It must be a bug, otherwise there would be better logging. If different versions of the same project don't work, and if nothing has changed since it did work, it's unlikely to be a problem with your code. It's more likely to be an issue with the infrastructure supporting it, like the internet or a storage device somewhere.
b
what version of pulumi are you using?
l
I would change my infrastructure until something works.
You could try
-v=3
or
-v=9
, but it the exception is being throw so early, even that might not help..
f
thanks will try that to see if I can get more info
@billowy-army-68599 I’m up to date I think,
2.18.2
I’ve finally got the situation back to normal. It seems it was because of a version discrepancy on
@pulumi/aws
between a module I use requiring it and the main project (the module was requiring
3.23.0
while the project was
^3.20.0
which resulted on using the last one (
3.25.1
). After forcing the main project to
3.23.0
like the module dependency, I got
pulumi up
to work again. I hate node modules. Thanks for having taken the time to help guys
👍 1
l
Well done!