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
Describe the bug
If twemproxy enables sentinel support for redis, and it receives a sentinel response with references to a db name not found in the redis config file, then it should just log it instead of treating the sentinel server as in an invalid state and disconnecting
Original code causing this error for "unknown server name"
server=server_find_by_name(ctx, sentinel->owner, &server_name);
if (server==NULL) {
log_error("unknown server name:%.*s", server_name.len, server_name.data);
goto error;
}
The text was updated successfully, but these errors were encountered:
Describe the bug
If twemproxy enables sentinel support for redis, and it receives a sentinel response with references to a db name not found in the redis config file, then it should just log it instead of treating the sentinel server as in an invalid state and disconnecting
Original code causing this error for "unknown server name"
The text was updated successfully, but these errors were encountered: