Skip to content

Commit

Permalink
Use one process to download signed URLs. (#4375)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmetzman authored Nov 4, 2024
1 parent f4c82ac commit 13c5b09
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/clusterfuzz/_internal/system/fast_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from concurrent import futures
import contextlib
import itertools
import multiprocessing
from typing import List
from typing import Optional
from typing import Tuple
Expand All @@ -26,7 +25,9 @@
from clusterfuzz._internal.metrics import logs
from clusterfuzz._internal.system import environment

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


@contextlib.contextmanager
Expand Down

0 comments on commit 13c5b09

Please sign in to comment.