Skip to content

Commit

Permalink
update kill
Browse files Browse the repository at this point in the history
  • Loading branch information
yezizp2012 committed Sep 29, 2024
1 parent adb4c35 commit d182fad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/simulation/src/cluster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -961,15 +961,15 @@ impl KillOpts {
/// Killing all kind of nodes.
pub const ALL: Self = KillOpts {
kill_rate: 1.0,
kill_meta: true,
kill_meta: false, // FIXME: make it true when multiple meta nodes are supported
kill_frontend: true,
kill_compute: true,
kill_compactor: true,
restart_delay_secs: 20,
};
pub const ALL_FAST: Self = KillOpts {
kill_rate: 1.0,
kill_meta: true,
kill_meta: false, // FIXME: make it true when multiple meta nodes are supported
kill_frontend: true,
kill_compute: true,
kill_compactor: true,
Expand Down

0 comments on commit d182fad

Please sign in to comment.