Skip to content

Commit de59607

Browse files
authored
Fix Controller Path
1 parent fe867cb commit de59607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/controller/runtime.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func (r RuntimeController) RegisterRoutes(e *echo.Echo) error {
3030
e.GET("/2018-06-01/runtime/invocation/next", r.NextInvocation)
3131
e.POST("/2018-06-01/runtime/invocation/:requestId/response", r.SendResponse)
3232
e.POST("/2018-06-01/runtime/invocation/:requestId/error", r.SendError)
33-
e.POST("/2018-06-01/runtime/runtime/init/error", r.SendRuntimeInitError)
33+
e.POST("/2018-06-01/runtime/init/error", r.SendRuntimeInitError)
3434

3535
return nil
3636
}

0 commit comments

Comments
 (0)