Open adumont opened 2 months ago
Thanks for reporting. Could you please run this script and see if it works? Trying to understand what python module may use something that is not fips friendly.
import socket
import ssl
hostname = 'www.python.org'
context = ssl.create_default_context()
with socket.create_connection((hostname, 443)) as sock:
with context.wrap_socket(sock, server_hostname=hostname) as ssock:
print(ssock.version())
``We are running a webapp on Azure, which uses Elastic APM (elastic-apm==6.23.0). Since 08/29/2024, without changing anything our app is failing to run, with:
We noticed the Azure webapp environment (linux) now has the following kernel parameter:
To Reproduce
Environment (please complete the following information)
Additional context
See attached file for detail about installed packages in the OS and version, as well as a detailled dump of the system calls.
issue.txt