Skip to content

Commit

Permalink
fix(polling): Non-reachable endpoint for fast forwarding a poller (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
jervi authored and gardleopard committed Apr 4, 2018
1 parent 589e21d commit 5f4b532
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public AdminController(Optional<List<CommonPollingMonitor>> pollingMonitors) {
* @param monitorName The polling monitor name (ex: "DockerMonitor")
* @param partition The partition name, if not provided, method will re-index the entire monitor
*/
@RequestMapping(value = "/pollers/fastforward/{name}", method = RequestMethod.POST)
@RequestMapping(value = "/pollers/fastforward/{monitorName}", method = RequestMethod.POST)
@ResponseStatus(HttpStatus.NO_CONTENT)
public void fastForward(@PathVariable String monitorName,
@RequestParam(required = false) String partition) {
Expand Down

0 comments on commit 5f4b532

Please sign in to comment.