Skip to content

Commit 9953160

Browse files
author
Hans Zandbelt
committed
correct port printout on reconnect failure
1 parent 47e1b8b commit 9953160

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cache/redis.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ static redisReply* oidc_cache_redis_command(request_rec *r,
195195

196196
/* check if re-connecting worked, if not we'll error out */
197197
if ((context->ctx == NULL) || (context->ctx->err != 0)) {
198-
oidc_error(r, "failed to connect to Redis server (%s:%s): '%s'",
198+
oidc_error(r, "failed to connect to Redis server (%s:%d): '%s'",
199199
context->host_str, context->port, context->ctx->errstr);
200200
break;
201201
}

0 commit comments

Comments
 (0)