-
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? |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
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.