Skip to content

Commit

Permalink
Set default claim_limit back to 1
Browse files Browse the repository at this point in the history
It appears we accidentally changed the default `claim_limit` for compute services to 1000, which massively changes the behavior for deployed compute services if they don't explicitly set this option in their configuration files.

This changes this default back to 1.
  • Loading branch information
dotsdl committed Aug 16, 2024
1 parent 79ec027 commit 13ef1c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alchemiscale/compute/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Config:
description="Names of Protocols to run with this service; `None` means no restriction.",
)
claim_limit: int = Field(
1000, description="Maximum number of Tasks to claim at a time from a TaskHub."
1, description="Maximum number of Tasks to claim at a time from a TaskHub."
)
loglevel: str = Field(
"WARN",
Expand Down

0 comments on commit 13ef1c7

Please sign in to comment.