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
You can configure the request timeout and connection timeout (see `timeout` and `connect_timeout` respectively in Erlang/OTP [httpc documentation](https://www.erlang.org/doc/apps/inets/httpc.html#request/5)). The default value is 15 seconds for both.
165
+
166
+
In `rabbitmq.conf`:
167
+
168
+
```
169
+
auth_http.request_timeout=20000
170
+
auth_http.connection_timeout=10000
171
+
```
172
+
173
+
In the [`advanced.config` format](https://www.rabbitmq.com/configure.html#advanced-config-file):
174
+
175
+
```
176
+
{rabbitmq_auth_backend_http,
177
+
[{request_timeout, 20_000},
178
+
{connection_timeout, 10_000},
179
+
...
180
+
]}
181
+
```
182
+
162
183
## Debugging
163
184
164
185
[Enable debug logging](https://rabbitmq.com/logging.html#debug-logging) to see what the backend service receives.
0 commit comments