Skip to content

Commit 13c5b09

Browse files
Use one process to download signed URLs. (#4375)
1 parent f4c82ac commit 13c5b09

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/clusterfuzz/_internal/system/fast_http.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from concurrent import futures
1717
import contextlib
1818
import itertools
19-
import multiprocessing
2019
from typing import List
2120
from typing import Optional
2221
from typing import Tuple
@@ -26,7 +25,9 @@
2625
from clusterfuzz._internal.metrics import logs
2726
from clusterfuzz._internal.system import environment
2827

29-
_POOL_SIZE = multiprocessing.cpu_count()
28+
# TODO(metzman): Use cpu_count() if we can rule this out as the cause of our NTP
29+
# trouble.
30+
_POOL_SIZE = 1
3031

3132

3233
@contextlib.contextmanager

0 commit comments

Comments
 (0)