From fba03c8cbb8c7b8b3e64e29c0a1409107ddfe6b3 Mon Sep 17 00:00:00 2001 From: Yuji Iwai Date: Sat, 31 Jan 2015 00:26:16 +0900 Subject: [PATCH] Bugfix: duplicate resume call. --- src/StreamingClient.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/StreamingClient.php b/src/StreamingClient.php index 5cfe719..ce058dd 100644 --- a/src/StreamingClient.php +++ b/src/StreamingClient.php @@ -67,7 +67,6 @@ public function __construct(Stream $stream, ParserInterface $parser = null, Seri }); $stream->on('close', array($this, 'close')); - $stream->resume(); $this->stream = $stream; $this->parser = $parser;