Skip to content

Commit 064dbed

Browse files
author
Alex Nekipelov
committed
Fix issue nekipelov#11
1 parent 9fb4de0 commit 064dbed

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ redisclient
33

44
Build status: [![Build Status](https://travis-ci.org/nekipelov/redisclient.svg?branch=unstable)](https://travis-ci.org/nekipelov/redisclient)
55

6-
Current version: 0.4.0
6+
Current version: 0.4.1
77

88
Boost.asio based Redis-client header-only library. Simple but powerfull.
99

src/redisclient/impl/redissyncclient.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ bool RedisSyncClient::connect(const boost::asio::ip::tcp::endpoint &endpoint,
4141
if( !ec )
4242
{
4343
pimpl->state = RedisClientImpl::Connected;
44-
pimpl->processMessage();
4544
return true;
4645
}
4746
else

src/redisclient/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
#ifndef REDISCLIENT_VERSION_H
77
#define REDISCLIENT_VERSION_H
88

9-
#define REDIS_CLIENT_VERSION 400 // 0.4.0
9+
#define REDIS_CLIENT_VERSION 401 // 0.4.1
1010

1111
#endif // REDISCLIENT_VERSION_H

0 commit comments

Comments
 (0)