https://pulumi.com logo
m

millions-judge-24978

10/17/2019, 6:02 PM
I have a program using
aws.getCallerIdentity
that was working and has somehow now stopped. I changed the program to just
Copy code
import * as pulumi from '@pulumi/pulumi';
import * as aws from '@pulumi/aws';

(async () => {
  console.log('start')
  console.log(await aws.getCallerIdentity());
  console.log('end')
})();
and it hangs on
aws.getCallerIdentity()
Any idea what could have happened?
g

gentle-diamond-70147

10/17/2019, 6:06 PM
What version of Pulumi and Node are you using? There was an issue with Node
v12.11.1
that we fixed just the other day.
m

millions-judge-24978

10/17/2019, 6:07 PM
node
v12.12.0
pulumi
v1.3.2
Ahh yeah I think going back to node 12.10 fixed it
g

gentle-diamond-70147

10/17/2019, 6:09 PM
It should be fixed in the 1.3.2 release of
@pulumi/pulumi
later today.
m

millions-judge-24978

10/17/2019, 6:09 PM
phew 😅 , was started to lose my mind what was happening, thanks!