Added Premature end of data into DetectsLostConnections. (#6764)

* Added `Premature end of data` into `DetectsLostConnections`.

* Update
This commit is contained in:
李铭昕 2024-05-16 20:49:05 +08:00 committed by GitHub
parent 5894bc31d2
commit f0fa26dbe5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 21 additions and 1 deletions

View File

@ -1,4 +1,10 @@
# v3.0.49 - TBD
# v3.0.50 - TBD
# v3.0.49 - 2024-05-16
## Added
- [#6764](https://github.com/hyperf/hyperf/pull/6764) Added `Premature end of data` into `DetectsLostConnections`.
# v3.0.48 - 2024-04-17

View File

@ -1,5 +1,11 @@
# Changelogs
# v3.0.49 - 2024-05-16
## Added
- [#6764](https://github.com/hyperf/hyperf/pull/6764) Added `Premature end of data` into `DetectsLostConnections`.
# v3.0.48 - 2024-04-17
## Fixed

View File

@ -1,5 +1,11 @@
# 版本更新记录
# v3.0.49 - 2024-05-16
## Added
- [#6764](https://github.com/hyperf/hyperf/pull/6764) Added `Premature end of data` into `DetectsLostConnections`.
# v3.0.48 - 2024-04-17
## 修复

View File

@ -51,6 +51,8 @@ trait DetectsLostConnections
// SSL: Connection timed out
// SQLSTATE[HY000] [2002] Connection timed out
'timed out',
// PDOStatement::execute(): Premature end of data
'Premature end of data',
]);
}
}