Skip to content

Commit

Permalink
Reduce task concurrency
Browse files Browse the repository at this point in the history
- It was very high
- Set v4.35.1
  • Loading branch information
Uxio0 committed Mar 7, 2024
1 parent 3d3f7f6 commit 252d656
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/web/celery/worker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

MAX_MEMORY_PER_CHILD="${WORKER_MAX_MEMORY_PER_CHILD:-2097152}"
MAX_TASKS_PER_CHILD="${MAX_TASKS_PER_CHILD:-1000000}"
TASK_CONCURRENCY="${CELERYD_CONCURRENCY:-50000}"
TASK_CONCURRENCY="${CELERYD_CONCURRENCY:-15000}"

# DEBUG set in .env_docker_compose
if [ ${DEBUG:-0} = 1 ]; then
Expand Down
2 changes: 1 addition & 1 deletion safe_transaction_service/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "4.35.0"
__version__ = "4.35.1"
__version_info__ = tuple(
int(num) if num.isdigit() else num
for num in __version__.replace("-", ".", 1).split(".")
Expand Down

0 comments on commit 252d656

Please sign in to comment.