Skip to content

Commit

Permalink
skip for bootnode check
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyukang committed Sep 22, 2024
1 parent 3395f31 commit 5703ab7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/deploy/udt-init/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ fn genrate_nodes_config() {
// write the real ports into a file so that later script can use it to double check the ports
let content = ports_map
.iter()
.skip(1)
.skip(2) // bootnode node was not always started
.map(|(_, port)| port.to_string())
.collect::<Vec<_>>()
.join("\n");
Expand Down
3 changes: 1 addition & 2 deletions tests/nodes/start.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env bash

#set -euo pipefail
set -euo pipefail
export SHELLOPTS
export RUST_BACKTRACE=full RUST_LOG=info,fnn=debug

Expand Down

0 comments on commit 5703ab7

Please sign in to comment.