Skip to content

Commit

Permalink
updated method names to match
Browse files Browse the repository at this point in the history
  • Loading branch information
amoldavsky committed May 17, 2021
1 parent a353cc8 commit c6a1cdc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class ModelPredictionController {
value = "/predict",
method = {RequestMethod.GET, RequestMethod.POST},
produces = "application/json; charset=utf-8")
public ResponseEntity<String> predictions(@RequestParam("json") String json) {
public ResponseEntity<String> predict(@RequestParam("json") String json) {
SeldonMessage request;
try {
SeldonMessage.Builder builder = SeldonMessage.newBuilder();
Expand Down

0 comments on commit c6a1cdc

Please sign in to comment.