Fixed problem with watch-minimum-balances spamming notifications.

This commit is contained in:
Geoff Taylor 2021-09-21 16:08:46 +01:00
parent dc7ac7e136
commit 8b1ebc13e8
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ def add_subscription_for_parameter(context: mango.Context, manager: mango.WebSoc
rx.operators.observe_on(context.create_thread_pool_scheduler()),
rx.operators.map(log_account),
rx.operators.filter(account_fails_balance_check),
rx.operators.throttle_first(20),
rx.operators.throttle_first(timer_limit),
rx.operators.catch(mango.observable_pipeline_error_reporter),
rx.operators.retry()
).subscribe(notifier(name))