Skip to content

Commit

Permalink
add userscript support for start-workers.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
SumanthRH committed Feb 27, 2024
1 parent 9d441c9 commit 1bb5b64
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions start-workers.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/bin/bash

# Modify this script by copying it to your home directory
# *** be sure to remove the "exec" line below from your copy! ***
USERSCRIPT=$HOME/start-workers.sh
if [ -x "$USERSCRIPT" ]; then
exec "$USERSCRIPT" "$@"
fi

NUM_WORKERS=2

WORKER_CPU_REQUEST=3
Expand Down

0 comments on commit 1bb5b64

Please sign in to comment.