Skip to content

Commit

Permalink
HBASE-25777 Fix wrong initialization value in StressAssignmentManager…
Browse files Browse the repository at this point in the history
…MonkeyFactory (#3164)

Signed-off-by: meiyi <myimeiyi@gmail.com>
  • Loading branch information
nyl3532016 authored Apr 19, 2021
1 parent b65890d commit e8ac1fb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ public ChaosMonkey build() {
new MoveRandomRegionOfTableAction(MonkeyConstants.DEFAULT_MOVE_RANDOM_REGION_SLEEP_TIME,
tableName),
new RestartRandomRsAction(MonkeyConstants.DEFAULT_RESTART_RANDOM_RS_SLEEP_TIME),
new BatchRestartRsAction(MonkeyConstants.DEFAULT_ROLLING_BATCH_RESTART_RS_SLEEP_TIME, 0.5f),
new RollingBatchRestartRsAction(MonkeyConstants.DEFAULT_BATCH_RESTART_RS_SLEEP_TIME, 1.0f),
new BatchRestartRsAction(MonkeyConstants.DEFAULT_BATCH_RESTART_RS_SLEEP_TIME, 0.5f),
new RollingBatchRestartRsAction(MonkeyConstants.DEFAULT_ROLLING_BATCH_RESTART_RS_SLEEP_TIME, 1.0f),
new RestartRsHoldingMetaAction(MonkeyConstants.DEFAULT_RESTART_RS_HOLDING_META_SLEEP_TIME),
new ChangeSplitPolicyAction(tableName),
new SplitAllRegionOfTableAction(tableName),
Expand Down

0 comments on commit e8ac1fb

Please sign in to comment.