Skip to content

Commit

Permalink
add back in no snapshot fetch flag
Browse files Browse the repository at this point in the history
  • Loading branch information
greg committed Oct 18, 2023
1 parent e25433e commit b7691b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions k8s-cluster/src/kubernetes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ impl<'a> Kubernetes<'a> {
if self.validator_config.skip_poh_verify {
flags.push("--skip-poh-verify".to_string());
}
// if self.validator_config.no_snapshot_fetch {
// flags.push("--no-snapshot-fetch".to_string());
// }
if self.validator_config.no_snapshot_fetch {
flags.push("--no-snapshot-fetch".to_string());
}
if self.validator_config.skip_require_tower {
flags.push("--skip-require-tower".to_string());
}
Expand Down

0 comments on commit b7691b7

Please sign in to comment.