Check that ccrfilter time is enabled before using it
The filter calculated a time difference which was negative if the filter was not configured to use time intervals. Added more info level logging to help determine how the filter behaves.
This commit is contained in:
parent
4e6fde8a23
commit
03402a86ed
@ -341,11 +341,18 @@ routeQuery(MXS_FILTER *instance, MXS_FILTER_SESSION *session, GWBUF *queue)
|
||||
queue->hint = hint_create_route(queue->hint, HINT_ROUTE_TO_MASTER, NULL);
|
||||
my_session->hints_left--;
|
||||
my_instance->stats.n_add_count++;
|
||||
MXS_INFO("%d queries left", my_instance->time);
|
||||
}
|
||||
else if (difftime(now, my_session->last_modification) < my_instance->time)
|
||||
else if (my_instance->time)
|
||||
{
|
||||
queue->hint = hint_create_route(queue->hint, HINT_ROUTE_TO_MASTER, NULL);
|
||||
my_instance->stats.n_add_time++;
|
||||
double dt = difftime(now, my_session->last_modification);
|
||||
|
||||
if (dt < my_instance->time)
|
||||
{
|
||||
queue->hint = hint_create_route(queue->hint, HINT_ROUTE_TO_MASTER, NULL);
|
||||
my_instance->stats.n_add_time++;
|
||||
MXS_INFO("%.0f seconds left", dt);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user