-
Hi,
I pointed the environment variable REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-bundle.trust.crt. Run a sample python script to query the same https API url and it was a success.
Is shillelagh having different requirements on specifying self signed cert? or is there any way to set verify=false (bad practice but acceptable for my intranet use case). rgds, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I can't think of any reason why this shouldn't work in Superset .... unless containers? |
Beta Was this translation helpful? Give feedback.
Ends up it was caused by I setup container env incorrectly. The docker compose of superset has it's own env file which is not the default .env file. When I ran the test script, I specifically set the env by SSH into superset container hence it works on test script but this way the env actually not getting into container environment. I found the right way after inspecting docker-compose file and set the env in the right file, then it works as expected. Entirely my setup mistake, but a good learning. Thanks for your tips!