()
| 131 | } |
| 132 | |
| 133 | func (r *RuntimeConfig) GetMaxTaskRetries() int { |
| 134 | if r == nil || r.MaxTaskRetries <= 0 { |
| 135 | return MaxTaskRetries |
| 136 | } |
| 137 | return r.MaxTaskRetries |
| 138 | } |
| 139 | |
| 140 | func (r *RuntimeConfig) GetDialHedgeCount() int { |
| 141 | if r == nil || r.DialHedgeCount < 0 { |
no outgoing calls