Hi, with new version of pulumi 3.39.1 noticed warn...
# python
v
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
@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
Thanks!
l
@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