https://pulumi.com logo
#python
Title
# python
v

victorious-continent-984

09/04/2022, 12:52 PM
Hi, with new version of pulumi 3.39.1 noticed warnings:
Copy code
warning: Error downloading plugin: 403 HTTP error fetching plugin from  <https://get.pulumi.com/releases/plugins/>...
I’m using several custom python packages generated using crd2pulumi. It seems like plugin resolving mechanism tries to download something from public repo… This is very annoying since int adds a good few minutes for each pulumi up run. Do you know anything about it?
l

limited-rainbow-51650

09/06/2022, 6:51 AM
@victorious-continent-984 this is a regression. I added a comment about your case at hand in this issue: https://github.com/pulumi/pulumi/issues/10572#issuecomment-1237728592
v

victorious-continent-984

09/06/2022, 9:25 AM
Thanks!
l

limited-rainbow-51650

09/06/2022, 12:18 PM
@victorious-continent-984 as a workaround, can you patch the generated code? In
setup.py
, you will find an
InstallPluginCommand
class and the
setup
function has that configured in the
cmdclass
property. You should be able to remove both without a problem.
🔥 1
22 Views