hrm, something seems to be up with our `build_wind...
# core
s
hrm, something seems to be up with our
build_windows (Release, 64, windows-2019)
workflow
s
s
Yeah, itโ€™s failing on master and other PRs too โ€” https://github.com/osquery/osquery/actions/runs/6564750568/job/17831819185
s
it's the python http test server that is using a deprecated way (and now apparently removed in python 3.12) of creating a SSL context
s
oof
s
the warning that
ssl.wrap_socket
was deprecated was there since a while
well, the alternative is already present https://docs.python.org/3/library/ssl.html
Copy code
For more sophisticated applications, the ssl.SSLContext class helps manage settings and certificates, which can then be inherited by SSL sockets created through the SSLContext.wrap_socket() method.
that's the substitute that should be used
ty 1
s
super duper quick attempt at fixing it: https://github.com/osquery/osquery/pull/8169 (my python is a bit weak these days)
๐ŸŽ‰ 1