Add period to error message. (#12716)

This commit is contained in:
dHannasch
2020-12-09 15:58:21 -06:00
committed by GitHub
parent 974570b4fb
commit d455cae036
+1 -1
View File
@@ -304,7 +304,7 @@ Status ConnectWithoutRetries(const std::string &address, int port,
oss << "Could not allocate Redis context.";
} else if (newContext->err) {
oss << "Could not establish connection to Redis " << address << ":" << port
<< " (context.err = " << newContext->err << ")";
<< " (context.err = " << newContext->err << ").";
}
return Status::RedisError(errorMessage);
}