well i did it again and statuses was not empty tha...
# python
s
well i did it again and statuses was not empty that time. not sure why it was empty the first, but ill take it!
g
Sorry I missed this! Generally, when I run into that kind of error in Pulumi with Python, it's an asyncio issue where I'm not setting my resource dependencies right using the
depends_on
flag. The first run (or three) fail, but then the stars align and everything gets created in the right order. I'd check to see if you need anything to get deployed in a specific order, and then use the
depends_on
flag to make that happen. Let me know if that makes sense!