We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 310d6a7 commit f4009d4Copy full SHA for f4009d4
handler/handler.go
@@ -61,9 +61,8 @@ func Handler(c web.Context) error {
61
case r := <-result:
62
return c.JSON(http.StatusOK, map[string]string{"output": r})
63
case <-c.Done():
64
- return c.JSON(http.StatusGatewayTimeout, map[string]string{"messagde": "timeout"})
+ return c.JSON(http.StatusGatewayTimeout, map[string]string{"message": "timeout"})
65
}
66
-
67
68
69
func buildTask(er ExecRequest) (input.Task, error) {
0 commit comments