Saurabh Garg
Saurabh Garg
@nlopezgi Is there a way to set PYTHONHTTPSVERIFY property in bazel, such that it trickles down to containerregistry? (found this thread to turn off cert verification in python: http://blog.pengyifan.com/how-to-fix-python-ssl-certificate_verify_failed/) Also...
The issue is coming from httplib2. You can reproduce the issue using the following python code: `import httplib2` `h = httplib2.Http()` `h.request('https://registry.gitlab.com')` And the issue can be resolved by adding...
I came up with my own hack to get it to work. But the patch approach seems better. Thanks for sharing!
Is there a workaround for working with proto definitions which have oneOf?