Less often used options.
(cfg backoff.Config)
| 85 | // Less often used options. |
| 86 | |
| 87 | func (s *ConcreteService) SetBackoff(cfg backoff.Config) { |
| 88 | s.retryBackoff = backoff.New(context.Background(), cfg) |
| 89 | } |
| 90 | |
| 91 | func (s *ConcreteService) SetEnvVars(env map[string]string) { |
| 92 | s.env = env |