Cleanup: manager, fix copy-paste from original OpenAPI example code

This commit is contained in:
Sybren A. Stüvel 2022-04-08 12:04:58 +02:00
parent 863ecee954
commit 06bf3c0482

View File

@ -144,7 +144,7 @@ func NewFlamenco(
} }
} }
// sendPetstoreError wraps sending of an error in the Error format, and // sendAPIError wraps sending of an error in the Error format, and
// handling the failure to marshal that. // handling the failure to marshal that.
func sendAPIError(e echo.Context, code int, message string, args ...interface{}) error { func sendAPIError(e echo.Context, code int, message string, args ...interface{}) error {
if len(args) > 0 { if len(args) > 0 {
@ -152,11 +152,11 @@ func sendAPIError(e echo.Context, code int, message string, args ...interface{})
message = fmt.Sprintf(message, args) message = fmt.Sprintf(message, args)
} }
petErr := api.Error{ apiErr := api.Error{
Code: int32(code), Code: int32(code),
Message: message, Message: message,
} }
return e.JSON(code, petErr) return e.JSON(code, apiErr)
} }
// sendAPIErrorDBBusy sends a HTTP 503 Service Unavailable, with a hopefully // sendAPIErrorDBBusy sends a HTTP 503 Service Unavailable, with a hopefully