Removed false warnings about readwritesplit parameter types

The warning was expecting the wrong return value and mistakenly interpreted that
the setting of the parameter failed.
This commit is contained in:
Markus Makela
2016-03-02 08:38:59 +02:00
parent bb1e36e2a5
commit 9b2748f50c

View File

@ -2345,15 +2345,12 @@ int create_new_service(CONFIG_CONTEXT *obj)
if ((param = config_get_param(obj->parameters, "use_sql_variables_in"))) if ((param = config_get_param(obj->parameters, "use_sql_variables_in")))
{ {
if (service_set_param_value(obj->element, param, param->value, if (!service_set_param_value(obj->element, param, param->value,
COUNT_NONE, SQLVAR_TARGET_TYPE)) COUNT_NONE, SQLVAR_TARGET_TYPE))
{ {
if (param) MXS_WARNING("Invalid value type for parameter \'%s.%s = %s\'\n\tExpected "
{ "type is [master|all] for use sql variables in.",
MXS_WARNING("Invalid value type for parameter \'%s.%s = %s\'\n\tExpected " service->name, param->name, param->value);
"type is [master|all] for use sql variables in.",
service->name, param->name, param->value);
}
} }
} }
} }