Skip to content

Commit

Permalink
Fix fullnode RPC (MystenLabs#3623)
Browse files Browse the repository at this point in the history
  • Loading branch information
666lcz authored Jul 31, 2022
1 parent 4a1f5ef commit 0f7014d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/sui-node/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,12 @@ async fn main() -> Result<()> {
});
}

task::spawn(async move {
task::spawn(async {
loop {
sleep(Duration::from_secs(3600)).await;
send_telemetry_event().await;
}
})
.await?;
});

sui_node::admin::start_admin_server(config.admin_interface_port, filter_handle);

Expand Down

0 comments on commit 0f7014d

Please sign in to comment.