mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-29 18:27:44 +08:00
Added Premature end of data
into DetectsLostConnections
. (#6764)
* Added `Premature end of data` into `DetectsLostConnections`. * Update
This commit is contained in:
parent
5894bc31d2
commit
f0fa26dbe5
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
## 修复
|
||||
|
@ -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',
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user