Commit 6f315352 authored by jan.koester's avatar jan.koester
Browse files

use nonblock connect with media and redis

parent 2512598f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@
blogi::RedisStore::RedisStore(const char *host,int port,const char *password){
    _host=host;
    _port=port;
    _RedisCTX=redisConnect(host,port);
    _RedisCTX=redisConnectNonBlock(host,port);

    if (_RedisCTX->err) {
        libhttppp::HTTPException exp;