mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-24 00:29:58 -05:00
- Fix to log redis timeout error string on failure.
This commit is contained in:
parent
d5e91d181b
commit
60fd77b8f9
2 changed files with 2 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ redis_connect(const struct redis_moddata* moddata)
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
if(redisSetTimeout(ctx, moddata->command_timeout) != REDIS_OK) {
|
if(redisSetTimeout(ctx, moddata->command_timeout) != REDIS_OK) {
|
||||||
log_err("failed to set redis timeout");
|
log_err("failed to set redis timeout, %s", ctx->errstr);
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
if(moddata->server_password && moddata->server_password[0]!=0) {
|
if(moddata->server_password && moddata->server_password[0]!=0) {
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
current delegation and validation recursion information to be
|
current delegation and validation recursion information to be
|
||||||
updated, but as a consequence no longer has certain expired
|
updated, but as a consequence no longer has certain expired
|
||||||
information around for later dnssec valid expired responses.
|
information around for later dnssec valid expired responses.
|
||||||
|
- Fix to log redis timeout error string on failure.
|
||||||
|
|
||||||
4 November 2024: Wouter
|
4 November 2024: Wouter
|
||||||
- Fix redis that during a reload it does not fail if the redis
|
- Fix redis that during a reload it does not fail if the redis
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue