Skip to content

Commit

Permalink
indent fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sasidharan-Gopal committed Aug 19, 2024
1 parent b2bc198 commit b87b6f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/extensions/filters/network/common/redis/client_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,8 @@ void ClientImpl::onRespValue(RespValuePtr&& value) {
(err[0] == RedirectionResponse::get().MOVED || err[0] == RedirectionResponse::get().ASK)) {
// MOVED and ASK redirection errors have the following substrings: MOVED or ASK (err[0]), hash
// key slot (err[1]), and IP address and TCP port separated by a colon (err[2])
callbacks.onRedirection(std::move(value), std::string(err[2]),
err[0] == RedirectionResponse::get().ASK);
callbacks.onRedirection(std::move(value), std::string(err[2]),
err[0] == RedirectionResponse::get().ASK);
} else {
if (err[0] == RedirectionResponse::get().CLUSTER_DOWN) {
callbacks.onFailure();
Expand Down

0 comments on commit b87b6f2

Please sign in to comment.