Skip to content

Commit

Permalink
Fixes test cases
Browse files Browse the repository at this point in the history
Signed-off-by: Gagan Juneja <[email protected]>
  • Loading branch information
Gagan Juneja committed Dec 9, 2024
1 parent ebf290b commit fb65f51
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ public void setup() {
null,
nodeClient,
circuitBreakerService,
usageService);
usageService,
null);
}

@After
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ public void init() {
null,
nodeClient,
circuitBreakerService,
usageService);
usageService,
null);
clusterSettingHandler =
new PerformanceAnalyzerClusterSettingHandler(controller, clusterSettingsManager);
nodeStatsSettingHandler = new NodeStatsSettingHandler(controller, clusterSettingsManager);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ public void init() {
null,
nodeClient,
circuitBreakerService,
usageService);
usageService,
null);
configAction = new PerformanceAnalyzerConfigAction(restController, controller);
restController.registerHandler(configAction);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ public void init() {
null,
nodeClient,
circuitBreakerService,
usageService);
usageService,
null);
configAction =
new PerformanceAnalyzerOverridesClusterConfigAction(
Settings.EMPTY,
Expand Down

0 comments on commit fb65f51

Please sign in to comment.