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 f4c82ac commit 13c5b09Copy full SHA for 13c5b09
src/clusterfuzz/_internal/system/fast_http.py
@@ -16,7 +16,6 @@
16
from concurrent import futures
17
import contextlib
18
import itertools
19
-import multiprocessing
20
from typing import List
21
from typing import Optional
22
from typing import Tuple
@@ -26,7 +25,9 @@
26
25
from clusterfuzz._internal.metrics import logs
27
from clusterfuzz._internal.system import environment
28
29
-_POOL_SIZE = multiprocessing.cpu_count()
+# TODO(metzman): Use cpu_count() if we can rule this out as the cause of our NTP
+# trouble.
30
+_POOL_SIZE = 1
31
32
33
@contextlib.contextmanager
0 commit comments