diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2023-01-31 20:13:33 +0100 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2024-02-18 11:32:53 +0100 |
commit | 96f1b278b61f77af4a358f9f7569e9181c809970 (patch) | |
tree | fc59ae12deed2543f0c5f4237330b1ef029c7c84 | |
parent | 54c85b18e036d29b7d0e2ca4d5543b37e4fc2f16 (diff) | |
download | wee-slack-96f1b278b61f77af4a358f9f7569e9181c809970.tar.gz |
Sleep for 100 ms instead of 10 ms in http
-rw-r--r-- | slack/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slack/http.py b/slack/http.py index 73a3303..5909cc0 100644 --- a/slack/http.py +++ b/slack/http.py @@ -28,7 +28,7 @@ async def hook_process_hashtable( f"hook_process_hashtable calling ({future.id}): command: {command}", ) while available_file_descriptors() < 10: - await sleep(10) + await sleep(100) weechat.hook_process_hashtable( command, options, timeout, get_callback_name(weechat_task_cb), future.id ) |