()
| 25 | var forever backoff.BackOff |
| 26 | |
| 27 | func init() { |
| 28 | b := backoff.NewExponentialBackOff() |
| 29 | b.MaxElapsedTime = 365 * 24 * time.Hour // 1 year |
| 30 | |
| 31 | forever = &lockedBackoff{b: b} |
| 32 | } |
| 33 | |
| 34 | func nopSetSession(sockjs.Session) {} |
| 35 |
nothing calls this directly
no outgoing calls
no test coverage detected