THRIFT-4354: fix php socket blocking behavior

Patch: Robert Lu <robberphex@gmail.com>
Client: php

This closes #1384
This commit is contained in:
James E. King III 2018-03-06 09:47:33 -05:00
parent 78755f5297
commit 14991f9041

View File

@ -138,6 +138,7 @@ class TSocket extends TTransport
public function setHandle($handle)
{
$this->handle_ = $handle;
stream_set_blocking($this->handle_, false);
}
/**