From ba5d7856d1f8464d86ccaa2620e90caeb32486a2 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Thu, 23 Aug 2018 14:46:46 +0100 Subject: [PATCH] Fix incorrect arguments --- s3_storage_provider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s3_storage_provider.py b/s3_storage_provider.py index 5330045..ac75514 100644 --- a/s3_storage_provider.py +++ b/s3_storage_provider.py @@ -124,7 +124,7 @@ class _S3DownloadThread(threading.Thread): producer = _S3Responder() reactor.callFromThread(self.deferred.callback, producer) - _stream_to_producer(self.deferred, resp["Body"], timeout=90.) + _stream_to_producer(reactor, producer, resp["Body"], timeout=90.) def _stream_to_producer(reactor, producer, body, status=None, timeout=None):