From 42e97339167282cb1e9b55c4d3b4e6485fed13ea Mon Sep 17 00:00:00 2001 From: "Zeijlon (ThinLinc Team)" <122010116+ThinLinc-Zeijlon@users.noreply.github.com> Date: Fri, 16 Feb 2024 12:39:48 +0100 Subject: [PATCH] Fix python 3 compatibility in server_http.py (#350) Building osslsigncode fails on systems with older versions of Python 3 due to the server_http.py script, part of the test procedure. This script requires the ThreadingHTTPServer module, introduced in Python version 3.7. A workaround has been implemented to create a ThreadingHTTPServer locally, ensuring backward compatibility with older Python versions. --- tests/server_http.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/server_http.py b/tests/server_http.py index 6848172..963f6a9 100644 --- a/tests/server_http.py +++ b/tests/server_http.py @@ -6,7 +6,8 @@ import subprocess import sys import threading from urllib.parse import urlparse -from http.server import SimpleHTTPRequestHandler, ThreadingHTTPServer +from http.server import SimpleHTTPRequestHandler, HTTPServer +from socketserver import ThreadingMixIn RESULT_PATH = os.getcwd() FILES_PATH = os.path.join(RESULT_PATH, "./Testing/files/") @@ -27,6 +28,8 @@ OPENSSL_TS = ["openssl", "ts", "-queryfile", REQUEST, "-out", RESPONS] +class ThreadingHTTPServer(ThreadingMixIn, HTTPServer): + daemon_threads = True class RequestHandler(SimpleHTTPRequestHandler): """Handle the HTTP POST request that arrive at the server"""