mirror of
https://github.com/minio/minio.git
synced 2024-12-27 15:45:55 -05:00
4d698841f4
Do not log errors on oneway streams when sending ping fails. Instead, cancel the stream. This also makes sure pings are sent when blocked on sending responses.
32 lines
1.0 KiB
Go
32 lines
1.0 KiB
Go
// Code generated by "stringer -type=debugMsg debug.go"; DO NOT EDIT.
|
|
|
|
package grid
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[debugShutdown-0]
|
|
_ = x[debugKillInbound-1]
|
|
_ = x[debugKillOutbound-2]
|
|
_ = x[debugWaitForExit-3]
|
|
_ = x[debugSetConnPingDuration-4]
|
|
_ = x[debugSetClientPingDuration-5]
|
|
_ = x[debugAddToDeadline-6]
|
|
_ = x[debugIsOutgoingClosed-7]
|
|
_ = x[debugBlockInboundMessages-8]
|
|
}
|
|
|
|
const _debugMsg_name = "debugShutdowndebugKillInbounddebugKillOutbounddebugWaitForExitdebugSetConnPingDurationdebugSetClientPingDurationdebugAddToDeadlinedebugIsOutgoingCloseddebugBlockInboundMessages"
|
|
|
|
var _debugMsg_index = [...]uint8{0, 13, 29, 46, 62, 86, 112, 130, 151, 176}
|
|
|
|
func (i debugMsg) String() string {
|
|
if i < 0 || i >= debugMsg(len(_debugMsg_index)-1) {
|
|
return "debugMsg(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _debugMsg_name[_debugMsg_index[i]:_debugMsg_index[i+1]]
|
|
}
|