Skip to content

Commit

Permalink
Fix annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Jan 25, 2025
1 parent 9fe1122 commit 62b0cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oonipipeline/src/oonipipeline/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Settings(BaseSettings):
clickhouse_url: str = "clickhouse://localhost"
clickhouse_write_batch_size: int = 200_000

max_workers = int(os.cpu_count() * 0.7)
max_workers: int = int(os.cpu_count() * 0.7)

telemetry_endpoint: Optional[str] = None
prometheus_bind_address: Optional[str] = None
Expand Down

0 comments on commit 62b0cde

Please sign in to comment.