diff --git a/crates/node/README.md b/crates/node/README.md index 13d411b7..5c37f283 100644 --- a/crates/node/README.md +++ b/crates/node/README.md @@ -91,3 +91,5 @@ to prevent it from binding GPU's USB controller, so it must be fixed after boot. echo "0000:01:00.2" | sudo tee /sys/bus/pci/drivers/xhci_hcd/unbind echo "0000:01:00.2" | sudo tee /sys/bus/pci/drivers/vfio-pci/bind ``` + +#TEST diff --git a/crates/node/src/main.rs b/crates/node/src/main.rs index d0a1e9aa..9caab3f8 100644 --- a/crates/node/src/main.rs +++ b/crates/node/src/main.rs @@ -388,6 +388,8 @@ async fn p2p_beacon(config: P2PBeaconConfig) -> Result<()> { tracing::error!("failed to resolve {}: {}", addr, err); } } + + tokio::time::sleep(Duration::from_secs(1)).await; } try_count += 1;