We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05262e4 commit d286e28Copy full SHA for d286e28
echo.go
@@ -227,7 +227,7 @@ const (
227
228
const (
229
// Version of Echo
230
- Version = "4.1.10"
+ Version = "4.1.11"
231
website = "https://echo.labstack.com"
232
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
233
banner = `
middleware/proxy_1_11_test.go
@@ -49,5 +49,5 @@ func TestProxy_1_11(t *testing.T) {
49
req.URL.Path = "/api/users"
50
e.ServeHTTP(rec, req)
51
assert.Equal(t, "/api/users", req.URL.Path)
52
- assert.Equal(t, http.StatusServiceUnavailable, rec.Code)
+ assert.Equal(t, http.StatusBadGateway, rec.Code)
53
}
0 commit comments