DisableRetry disables automatic retry on crash.
()
| 575 | |
| 576 | // DisableRetry disables automatic retry on crash. |
| 577 | func (l *Loop) DisableRetry() { |
| 578 | l.mu.Lock() |
| 579 | defer l.mu.Unlock() |
| 580 | l.retryConfig.Enabled = false |
| 581 | } |
| 582 | |
| 583 | // SetWatchdogTimeout sets the watchdog timeout duration. |
| 584 | // Setting timeout to 0 disables the watchdog. |
no outgoing calls