Update CHANGELOG.md

This commit is contained in:
李铭昕 2019-11-21 11:13:34 +08:00
parent 0c9421bc6f
commit d111522dc7
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@
- [#860](https://github.com/hyperf/hyperf/pull/860) Added retry component.
- [#952](https://github.com/hyperf/hyperf/pull/952) Added think template engine for view.
- [#973](https://github.com/hyperf/hyperf/pull/973) Added `Hyperf\JsonRpc\JsonRpcPoolTransporter`.
- [#976](https://github.com/hyperf/hyperf/pull/976) Added params `close_on_destruct` for `hyperf/amqp`.
## Fixed

View File

@ -81,6 +81,7 @@ class JsonRpcPoolTransporter implements TransporterInterface
$pool = $this->getPool();
$connection = $pool->get();
try {
/** @var RpcConnection $client */
$client = $connection->getConnection();
if ($client->send($data . $this->getEof()) === false) {
if ($client->errCode == 104) {