MXS-2034 Set query_retry_timeout

Was setting query_retry instead.
This commit is contained in:
Esa Korhonen 2018-08-31 11:49:36 +03:00
parent b2fea99dbc
commit 79ba89fba1

View File

@ -1671,7 +1671,7 @@ handle_global_item(const char *name, const char *value)
int intval = strtol(value, &endptr, 0);
if (*endptr == '\0' && intval > 0)
{
gateway.query_retries = intval;
gateway.query_retry_timeout = intval;
}
else
{