From d455cae036c0a3a84ca6d29a417e0665fb4cff2d Mon Sep 17 00:00:00 2001 From: dHannasch Date: Wed, 9 Dec 2020 14:58:21 -0700 Subject: [PATCH] Add period to error message. (#12716) --- src/ray/gcs/redis_context.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ray/gcs/redis_context.cc b/src/ray/gcs/redis_context.cc index 9034eaf9c..c9f32c711 100644 --- a/src/ray/gcs/redis_context.cc +++ b/src/ray/gcs/redis_context.cc @@ -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); }