Skip to content

Commit

Permalink
telemetry: fix error param name
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed Jul 9, 2023
1 parent e75bb31 commit 1cfa13e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void post(@RequestBody Telemetry telemetry)
@PostMapping("/error")
public void error(
@RequestParam String type,
@RequestParam(required = false) String errorParam,
@RequestParam(required = false, name = "error") String errorParam,
@RequestBody(required = false) String errorBody
)
{
Expand Down

0 comments on commit 1cfa13e

Please sign in to comment.