Pool hook functions
(connID uint64)
| 563 | |
| 564 | // Pool hook functions |
| 565 | func MarkedForHandoff(connID uint64) string { |
| 566 | message := fmt.Sprintf("conn[%d] %s", connID, MarkedForHandoffMessage) |
| 567 | return appendJSONIfDebug(message, map[string]interface{}{ |
| 568 | "connID": connID, |
| 569 | }) |
| 570 | } |
| 571 | |
| 572 | // Circuit breaker additional functions |
| 573 | func CircuitBreakerTransitioningToHalfOpen(endpoint string) string { |
no test coverage detected