Merge branch 'release-1.2' into schemarouter_refresh
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
# Getting Started With MariaDB MaxScale
|
||||
# MariaDB MaxScale Installation Guide
|
||||
|
||||
## First Steps With MaxScale
|
||||
|
||||
|
@ -277,11 +277,14 @@ GWPROTOCOL *funcs;
|
||||
}
|
||||
|
||||
if(mkdir_rval)
|
||||
{
|
||||
if(errno != EEXIST)
|
||||
{
|
||||
skygw_log_write(LOGFILE_ERROR,"Error : Failed to create directory '%s': [%d] %s",
|
||||
path,
|
||||
errno,
|
||||
strerror(errno));
|
||||
}
|
||||
mkdir_rval = 0;
|
||||
}
|
||||
|
||||
@ -292,11 +295,14 @@ GWPROTOCOL *funcs;
|
||||
}
|
||||
|
||||
if(mkdir_rval)
|
||||
{
|
||||
if(errno != EEXIST)
|
||||
{
|
||||
skygw_log_write(LOGFILE_ERROR,"Error : Failed to create directory '%s': [%d] %s",
|
||||
path,
|
||||
errno,
|
||||
strerror(errno));
|
||||
}
|
||||
mkdir_rval = 0;
|
||||
}
|
||||
strncat(path, "/dbusers", PATH_MAX);
|
||||
|
Reference in New Issue
Block a user