Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions http_service/bugbug_http/boot.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,7 @@ def retrieve_schedulable_tasks() -> None:

logger.info("Updating commits DB...")
try:
commits = repository.download_commits(
REPO_DIR, revs=revs, use_single_process=True
)
commits = repository.download_commits(REPO_DIR, revs=revs)
logger.info("Commits DB updated.")

logger.info("Updating touched together DB...")
Expand Down
1 change: 0 additions & 1 deletion http_service/bugbug_http/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,6 @@ def schedule_tests(branch: str, rev: str) -> str:
revs=revs,
branch=repo_branch,
save=False,
use_single_process=True,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here we usually have very few patches to analyze, so might be worth keeping a single process? Or do we already do that by default when the number is small?

include_no_bug=True,
)

Expand Down