|
I created a workflow that consists of three stages, but, only two activitys, the first of which is SQL statement parsing, the second is an activity, do SQL query, and the third stage is another activity, do json coding,but I got this error. Can you help me? |
Answered by
zhangkyou
Aug 16, 2021
Replies: 1 comment 1 reply
|
The answer is obviously in the error report. You must set either MaximumAttempts or ExpirationIntervalInSeconds parameters in ActivityOptions's RetryPolicy config.That two parameters decide your activity execute retry end with MaximumAttempts times or timeout with ExpirationIntervalInSeconds. |
1 reply
Answer selected by
longquanzheng
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The answer is obviously in the error report. You must set either MaximumAttempts or ExpirationIntervalInSeconds parameters in ActivityOptions's RetryPolicy config.That two parameters decide your activity execute retry end with MaximumAttempts times or timeout with ExpirationIntervalInSeconds.