mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Print the error message if read of local config fails.
This commit is contained in:
@@ -346,8 +346,10 @@ static bool
|
||||
readLocalConfig(){
|
||||
// Read local config file
|
||||
LocalConfig lc;
|
||||
if(!lc.init(glob.local_config_filename))
|
||||
if(!lc.init(glob.local_config_filename)){
|
||||
lc.printError();
|
||||
return false;
|
||||
}
|
||||
|
||||
glob.localNodeId = lc._ownNodeId;
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user