-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't connect to HTTPS URL because the SSL module is not available.
when OpenSSL_jll is loaded before Wandb.
#39
Comments
The offender seems to be using OpenSSL_jll
using Wandb: Wandb
# trigger ssl error
function provoke_error(logger)
logging_dict = Dict{String,Any}()
logging_dict["samples"] = Wandb.Image(rand(2, 2))
Wandb.log(logger, logging_dict; step=1)
end
logger = Wandb.WandbLogger(; project="test")
provoke_error(logger) |
lassepe
changed the title
Jul 5, 2024
Can't connect to HTTPS URL because the SSL module is not available.
when CairoMakie is loaded before Wandb.Can't connect to HTTPS URL because the SSL module is not available.
when OpenSSL_jll is loaded before Wandb.
Downgrading OpenSSL_jll to v1 seems to fix the issue. I don't think that should be the permanent solution but can be a workaround for now. |
I have opened PR's in the relevant upstream packages:
Given that there's nothing else that we can do here, let me close this one. |
Fixed as per the PRs above |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On a fresh Julia 1.10 install in a clean environment, the reproducer below causes the error:
Interestingly, this error only appears when
Wandb
is loaded afterCairoMakie
.The text was updated successfully, but these errors were encountered: