Skip to content

Commit

Permalink
Disable fullnode checkpoint sync at startup - its not working yet (My…
Browse files Browse the repository at this point in the history
  • Loading branch information
mystenmark authored Jul 26, 2022
1 parent 07f8229 commit 8d26484
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/sui-node/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,9 @@ impl SuiNode {
),
)
} else {
let metrics = CheckpointMetrics::new(&prometheus_registry);
active_authority.sync_to_latest_checkpoint(&metrics).await?;
// TODO: enable checkpoint sync on fullnode
// let metrics = CheckpointMetrics::new(&prometheus_registry);
// active_authority.sync_to_latest_checkpoint(&metrics).await?;
(
Some(active_authority.spawn_node_sync_process().await),
None,
Expand Down

0 comments on commit 8d26484

Please sign in to comment.