diff --git a/ws/IXRedisClient.cpp b/ws/IXRedisClient.cpp index 7c91f98a..47ad2b14 100644 --- a/ws/IXRedisClient.cpp +++ b/ws/IXRedisClient.cpp @@ -242,7 +242,7 @@ namespace ix return true; } - bool RedisClient::stop() + void RedisClient::stop() { _stop = true; } diff --git a/ws/IXRedisClient.h b/ws/IXRedisClient.h index 7dff729d..0912b801 100644 --- a/ws/IXRedisClient.h +++ b/ws/IXRedisClient.h @@ -32,7 +32,7 @@ namespace ix const OnRedisSubscribeResponseCallback& responseCallback, const OnRedisSubscribeCallback& callback); - bool stop(); + void stop(); private: std::string writeString(const std::string& str);