Skip to content
Snippets Groups Projects
Commit 8cb084c9 authored by Florian Fischer's avatar Florian Fischer
Browse files

disable throttle wakeup strategy until it works with scheduleOn

parent 15efdc5c
No related branches found
No related tags found
1 merge request!296fix Future::cancel with new Scheduler::scheduleOn(fiber, workerId)
......@@ -322,10 +322,11 @@ test-worker-wakeup-strategy-all:
- .test
- .worker-wakeup-strategy-all
test-worker-wakeup-strategy-throttle:
extends:
- .test
- .emper-worker-wakeup-strategy-throttle
# Disable throttle test till throttle works with notifySpecific
#test-worker-wakeup-strategy-throttle:
# extends:
# - .test
# - .emper-worker-wakeup-strategy-throttle
test-do-not-log-timestamp:
extends:
......
......@@ -40,7 +40,10 @@ option(
'worker_wakeup_strategy',
type: 'combo',
description: 'The strategy used to wakeup sleeping workers (only effective if worker_sleep is enabled)',
choices: ['one', 'throttle', 'all'],
choices: ['one', 'all'],
# Disable throttle until it works with notifySpecific
# TODO: Fix throttle and notifySpecific
# choices: ['one', 'throttle', 'all'],
value: 'one',
)
option(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment