Allow authenticate Redis with requirepass option

This commit is contained in:
it1804 2020-08-14 02:01:25 +05:00 committed by GitHub
parent a79c3175a7
commit a1c0c52c5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,6 +41,7 @@ namespace ErrorCodes
const std::string & host,
UInt16 port,
UInt8 db_index,
const std::string & password,
RedisStorageType storage_type,
const Block & sample_block);
@ -91,6 +92,7 @@ namespace ErrorCodes
const std::string host;
const UInt16 port;
const UInt8 db_index;
const std::string password;
const RedisStorageType storage_type;
Block sample_block;