Skip to content

Commit

Permalink
- Fix to log redis timeout error string on failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
wcawijngaards committed Nov 5, 2024
1 parent d5e91d1 commit 60fd77b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cachedb/redis.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ redis_connect(const struct redis_moddata* moddata)
goto fail;
}
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;
}
if(moddata->server_password && moddata->server_password[0]!=0) {
Expand Down
1 change: 1 addition & 0 deletions doc/Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
current delegation and validation recursion information to be
updated, but as a consequence no longer has certain expired
information around for later dnssec valid expired responses.
- Fix to log redis timeout error string on failure.

4 November 2024: Wouter
- Fix redis that during a reload it does not fail if the redis
Expand Down

0 comments on commit 60fd77b

Please sign in to comment.