From: Stefan Eissing Date: Thu, 16 Dec 2021 11:22:29 +0000 (+0000) Subject: *) test: modules/proxy, make uds faker a daemon thread, so it does not X-Git-Tag: 2.5.0-alpha2-ci-test-only~634 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f42a58f70ba156611b9c7a188e294980c263dd2e;p=thirdparty%2Fapache%2Fhttpd.git *) test: modules/proxy, make uds faker a daemon thread, so it does not prevent test shutdown. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1896041 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/modules/proxy/test_02_unix.py b/test/modules/proxy/test_02_unix.py index ac4f2dfcc34..a66cdf7462d 100644 --- a/test/modules/proxy/test_02_unix.py +++ b/test/modules/proxy/test_02_unix.py @@ -27,7 +27,7 @@ class UDSFaker: raise self._socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) self._socket.bind(self._uds_path) - self._thread = Thread(target=process, args=[self]) + self._thread = Thread(target=process, daemon=True, args=[self]) self._thread.start() def stop(self):