mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
zkutil: added missing comma to exception message [#METR-12572].
This commit is contained in:
parent
4e782c3fdf
commit
e54969e251
@ -15,7 +15,7 @@ public:
|
||||
KeeperException(int32_t code_)
|
||||
: DB::Exception(zerror(code_)), code(code_) {}
|
||||
KeeperException(int32_t code_, const std::string & path_)
|
||||
: DB::Exception(std::string(zerror(code_)) + " path: " + path_), code(code_) {}
|
||||
: DB::Exception(std::string(zerror(code_)) + ", path: " + path_), code(code_) {}
|
||||
KeeperException(const KeeperException & exc) : DB::Exception(exc), code(exc.code) {}
|
||||
|
||||
const char * name() const throw() { return "zkutil::KeeperException"; }
|
||||
|
Loading…
Reference in New Issue
Block a user