mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-25 02:50:33 +00:00
`_verify_tasks_processed_metrics()` is used to check that the correct service level is used to process requests. It takes two service levels as arguments and executes numerous requests. After that, the number of tasks processed by one of the service levels is expected to rise by at least the number of executed requests. In contrast, the second service level is expected to process fewer tasks than the number of requests. Unfortunately, background noise may cause some tasks to be executed on the service level that is not supposed to process requests. This patch increases the number of executed requests to eliminate the chance of noise causing test failures. Additionally, this commit extends logging to make future investigation easier. Fixes: https://github.com/scylladb/scylladb/issues/27715 No backport, fix for test on master. Closes scylladb/scylladb#27735 * github.com:scylladb/scylladb: test: remove unused `get_processed_tasks_for_group` test: increase num of requests in driver_service_level tests