We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac49825 commit 6427c1aCopy full SHA for 6427c1a
src/python/bot/startup/health_check_responder.py
@@ -19,6 +19,7 @@
19
from http.server import HTTPServer
20
import threading
21
22
+from clusterfuzz._internal.base import utils
23
from clusterfuzz._internal.system import process_handler
24
25
RESPONDER_IP = '0.0.0.0'
@@ -45,6 +46,10 @@ def do_GET(self): # pylint: disable=invalid-name
45
46
47
def run_server():
48
"""Start a HTTP server to respond to the health checker."""
49
+ if utils.is_oss_fuzz():
50
+ # OSS-Fuzz's multiple instances per host model isn't supported yet.
51
+ return
52
+
53
health_check_responder_server = HTTPServer((RESPONDER_IP, RESPONDER_PORT),
54
RequestHandler)
55
server_thread = threading.Thread(
0 commit comments