Skip to content

Commit 10f5842

Browse files
committed
Redundant stream_set_timeout() removed
1 parent 19c4d12 commit 10f5842

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
1010
- Fixed 'Where' method replaces the content with uppercase #148
1111
- Don't surround numeric search values with quotes
1212
- Context added to `InvalidWhereQueryCriteriaException`
13+
- Redundant `stream_set_timeout()` removed
1314

1415
### Added
1516
- Make boundary regex configurable #169 #150 #126 #121 #111 #152 #108 (thanks @EthraZa)

src/Connection/Protocols/Protocol.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ protected function createStream($transport, $host, $port, $timeout) {
191191
STREAM_CLIENT_CONNECT,
192192
stream_context_create($this->defaultSocketOptions($transport))
193193
);
194-
stream_set_timeout($stream, $timeout);
195194

196195
if (!$stream) {
197196
throw new ConnectionFailedException($errstr, $errno);

0 commit comments

Comments
 (0)