Merge branch 'develop' of https://github.com/mariadb-corporation/MaxScale into develop
This commit is contained in:
@ -579,7 +579,7 @@ static int ini_handler(void *userdata, const char *section, const char *name, co
|
||||
|
||||
if (strcmp(section, CN_GATEWAY) == 0 || strcasecmp(section, CN_MAXSCALE) == 0)
|
||||
{
|
||||
if (is_root_config_file)
|
||||
if (is_root_config_file || is_persisted_config)
|
||||
{
|
||||
return handle_global_item(name, value);
|
||||
}
|
||||
|
||||
@ -482,7 +482,7 @@ bool modulecmd_cb(const MODULECMD *cmd, void *data)
|
||||
std::string s = d->domain;
|
||||
s += "/";
|
||||
s += cmd->identifier;
|
||||
ss_dassert(strcmp(d->domain, cmd->domain) == 0);
|
||||
ss_dassert(strcasecmp(d->domain, cmd->domain) == 0);
|
||||
|
||||
json_object_set_new(obj, CN_LINKS, mxs_json_self_link(d->host, CN_MODULES, s.c_str()));
|
||||
json_object_set_new(attr, CN_PARAMETERS, param);
|
||||
|
||||
@ -389,6 +389,9 @@ const char* qc_op_to_string(qc_query_op_t op)
|
||||
case QUERY_OP_LOAD:
|
||||
return "QUERY_OP_LOAD";
|
||||
|
||||
case QUERY_OP_LOAD_LOCAL:
|
||||
return "QUERY_OP_LOAD_LOCAL";
|
||||
|
||||
case QUERY_OP_REVOKE:
|
||||
return "QUERY_OP_REVOKE";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user