TaskCalledTooManyTimesError is returned when the maximum task call limit is exceeded. This is to prevent infinite loops and cyclic dependencies.
| 102 | // TaskCalledTooManyTimesError is returned when the maximum task call limit is |
| 103 | // exceeded. This is to prevent infinite loops and cyclic dependencies. |
| 104 | type TaskCalledTooManyTimesError struct { |
| 105 | TaskName string |
| 106 | MaximumTaskCall int |
| 107 | } |
| 108 | |
| 109 | func (err *TaskCalledTooManyTimesError) Error() string { |
| 110 | return fmt.Sprintf( |
nothing calls this directly
no outgoing calls
no test coverage detected