Changed default `poll_interval` for `RunnablePlugin`.

30 -> 15 seconds.
This commit is contained in:
Fabio Manganiello 2023-03-03 02:00:48 +01:00
parent ead4513915
commit a688e7102e
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 2 additions and 2 deletions

View File

@ -80,13 +80,13 @@ class RunnablePlugin(Plugin):
def __init__(
self,
poll_interval: Optional[float] = 30,
poll_interval: Optional[float] = 15,
stop_timeout: Optional[float] = PLUGIN_STOP_TIMEOUT,
**kwargs,
):
"""
:param poll_interval: How often the :meth:`.loop` function should be
execute (default: 30 seconds).
execute (default: 15 seconds).
:param stop_timeout: How long we should wait for any running
threads/processes to stop before exiting (default: 5 seconds).
"""