You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -98,6 +83,25 @@ If you check the container logs:
98
83
}
99
84
```
100
85
86
+
### `X-Mirror-Delay`
87
+
88
+
If you need to test timeouts or errors handling like `503` HTTP responses, you can pass the
89
+
`X-Mirror-Delay` header with a number in milliseconds before the server responds.
90
+
91
+
```bash
92
+
time http :8080 X-Mirror-Code:503 X-Mirror-Delay:2000
93
+
HTTP/1.1 503 Service Unavailable
94
+
Connection: keep-alive
95
+
Content-Length: 0
96
+
Date: Fri, 20 May 2022 09:52:04 GMT
97
+
Keep-Alive: timeout=5
98
+
X-Powered-By: Express
99
+
100
+
101
+
102
+
http :8080 X-Mirror-Code:503 X-Mirror-Delay:2000 0.12s user 0.03s system 7% cpu 2.163 total
103
+
```
104
+
101
105
### `X-Mirror-Request`
102
106
103
107
If you can't access to the container log or want to exploit what's logged under the hood, set the `X-Mirror-Request` to receive the logged entry (as JSON):
@@ -171,7 +175,7 @@ X-Powered-By: Express
171
175
172
176
Note: if you don't specify the `true` value for the header, it'll ignored.
173
177
174
-
### Works for all headers
178
+
### Works with any headers
175
179
176
180
Aside to the previous three special headers, you can set your wanted response header by prepending your header name by `X-Mirror-`.
0 commit comments