try to fix dynamic scan warnings

This commit is contained in:
Kenneth Kehl
2025-02-03 08:23:44 -08:00
parent 8a70e728f2
commit 073c747786

View File

@@ -32,6 +32,11 @@ def worker_int(worker):
worker.log.info("worker: received SIGINT {}".format(worker.pid))
def post_request(worker, req, environ, resp):
if "Server" in resp.headers:
resp.headers.pop("Server")
def fix_ssl_monkeypatching():
"""
eventlet works by monkey-patching core IO libraries (such as ssl) to be non-blocking. However, there's currently