You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On last CI run, test_query_rules_fast_routing_algorithm-t failed with these errors:
...
[2025-02-14 23:26:45] DEBUG [proxysql-tester.py:698] msg: not ok 90 - 2025-02-14 23:26:45.518200 - Number of 'global' entries in SQLite3 'debug_log' should match issued queries - Exp: 20, Act: 20
...
[2025-02-14 23:26:46] DEBUG [proxysql-tester.py:698] msg: not ok 111 - 2025-02-14 23:26:46.888280 - Number of 'global' entries in SQLite3 'debug_log' should match issued queries - Exp: 20, Act: 20
...
"Exp: 20, Act: 20" seems correct to me, not a "not ok".
Yet, in the code I see the following:
ok(
matching_rows == rng_end - rng_init,
"Number of '%s' entries in SQLite3 'debug_log' should match issued queries - Exp: %d, Act: %ld",
init_algo_scope.c_str(), rng_end - rng_init, matched_lines.size()
);
and
ok(
matching_rows == rng_end - rng_init,
"Number of '%s' entries in SQLite3 'debug_log' should match issued queries - Exp: %d, Act: %ld",
init_algo_scope.c_str(), rng_end - rng_init, matched_lines.size()
);
The ok() clause and what displayed is different., thus there is at least a logical bug.
The text was updated successfully, but these errors were encountered:
This and the known failure for test_auth_methods-t were fixed by #4833. The test presented several logic issues that were fixed, and improved in other ways. Details in the link PR.
On last CI run,
test_query_rules_fast_routing_algorithm-t
failed with these errors:"Exp: 20, Act: 20" seems correct to me, not a "not ok".
Yet, in the code I see the following:
and
The
ok()
clause and what displayed is different., thus there is at least a logical bug.The text was updated successfully, but these errors were encountered: