You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by jo...@apache.org on 2020/05/14 09:52:00 UTC

[incubator-dolphinscheduler] branch dev updated (e4ee7d1 -> c28a697)

This is an automated email from the ASF dual-hosted git repository.

journey pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git.


    from e4ee7d1  Merge pull request #2707 from khadgarmage/fix-e2e-docker
     add c28a697  add RetryerUtils to retry async & sync function gracefully (#2697)

No new revisions were added by this update.

Summary of changes:
 dolphinscheduler-common/pom.xml                    |  14 ++
 .../common/utils/RetryerUtils.java                 | 108 +++++++++++
 .../common/utils/RetryerUtilsTest.java             | 216 +++++++++++++++++++++
 .../worker/processor/TaskExecuteProcessor.java     |  27 +--
 pom.xml                                            |   8 +
 tools/dependencies/known-dependencies.txt          |   1 +
 6 files changed, 361 insertions(+), 13 deletions(-)
 create mode 100644 dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/utils/RetryerUtils.java
 create mode 100644 dolphinscheduler-common/src/test/java/org/apache/dolphinscheduler/common/utils/RetryerUtilsTest.java