Skip to content

Commit

Permalink
Fix Controller Path
Browse files Browse the repository at this point in the history
  • Loading branch information
driverpt authored Aug 22, 2024
1 parent fe867cb commit de59607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func (r RuntimeController) RegisterRoutes(e *echo.Echo) error {
e.GET("/2018-06-01/runtime/invocation/next", r.NextInvocation)
e.POST("/2018-06-01/runtime/invocation/:requestId/response", r.SendResponse)
e.POST("/2018-06-01/runtime/invocation/:requestId/error", r.SendError)
e.POST("/2018-06-01/runtime/runtime/init/error", r.SendRuntimeInitError)
e.POST("/2018-06-01/runtime/init/error", r.SendRuntimeInitError)

return nil
}
Expand Down

0 comments on commit de59607

Please sign in to comment.