Skip to content

Commit

Permalink
fix: blocked connection from blocklisted peer
Browse files Browse the repository at this point in the history
  • Loading branch information
nugaon committed Oct 31, 2024
1 parent 142f53c commit e22e004
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions orchestrator/builder/bee.sh
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ if [ -z "$QUEEN_CONTAINER_IN_DOCKER" ] || $EPHEMERAL ; then
$EXTRA_QUEEN_PARAMS \
$DOCKER_IMAGE \
start \
--warmup-time=0 \
--warmup-time=10 \
--password "$BEE_PASSWORD" \
--bootnode="$QUEEN_BOOTNODE" \
--bootnode-mode=true \
Expand Down Expand Up @@ -267,7 +267,7 @@ for i in $(seq 1 1 "$WORKERS"); do
$EXTRA_WORKER_PARAMS \
$DOCKER_IMAGE \
start \
--warmup-time=0 \
--warmup-time=10 \
--password "$BEE_PASSWORD" \
--bootnode="$QUEEN_UNDERLAY_ADDRESS" \
--verbosity=4 \
Expand Down
2 changes: 1 addition & 1 deletion src/utils/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ export class Docker {

private createBeeEnvParameters(bootnode?: string): string[] {
const options: Record<string, string> = {
'warmup-time': '0',
'warmup-time': '10',
'debug-api-enable': 'true',
verbosity: '4',
'swap-enable': 'true',
Expand Down

0 comments on commit e22e004

Please sign in to comment.