Added some exception messages which used to reconnect PDO connection. (#5890)

This commit is contained in:
李铭昕 2023-06-30 09:20:59 +08:00 committed by GitHub
parent 077602814b
commit 92e191480d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,7 @@
## Fixed
- [#5880](https://github.com/hyperf/hyperf/pull/5880) Fixed bug that start server failed caused by swagger server name isn't string.
- [#5890](https://github.com/hyperf/hyperf/pull/5890) Added some exception messages which used to reconnect PDO connection.
## Optimized

View File

@ -43,6 +43,8 @@ trait DetectsLostConnections
'Name or service not known',
'ORA-03114',
'Packets out of order. Expected',
'Broken pipe',
'Error reading result',
]);
}
}