From 8227427834c20f8fc0ce48e490793fb4ec5c1e9f Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Wed, 13 Feb 2019 09:46:51 +0100 Subject: [PATCH] webtorrent timeout 20 -> 120 seconds --- platypush/plugins/media/webtorrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/plugins/media/webtorrent.py b/platypush/plugins/media/webtorrent.py index 57086dceef..4a8baf4977 100644 --- a/platypush/plugins/media/webtorrent.py +++ b/platypush/plugins/media/webtorrent.py @@ -44,7 +44,7 @@ class MediaWebtorrentPlugin(MediaPlugin): # Download at least 10 MBs before starting streaming _download_size_before_streaming = 10 * 2**20 - _web_stream_ready_timeout = 20 + _web_stream_ready_timeout = 120 def __init__(self, webtorrent_bin=None, webtorrent_port=None, *args, **kwargs):