You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ga...@apache.org on 2022/04/06 10:08:05 UTC

[dolphinscheduler] branch dev updated (ce7740b9fc -> 2bab12f2c8)

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

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


    from ce7740b9fc [Fix][UI Next][V1.0.0-Alpha]Add zh for dag execution policy (#9363)
     add 2bab12f2c8 [Feature-9204][alert] Implement alert send status (#9208)

No new revisions were added by this update.

Summary of changes:
 .../apache/dolphinscheduler/alert/AlertSender.java |  18 ++-
 .../dolphinscheduler/common/enums/AlertStatus.java |   3 +-
 .../org/apache/dolphinscheduler/dao/AlertDao.java  |  24 ++++
 .../dao/entity/AlertSendStatus.java                | 145 +++++++++++++++++++++
 .../{K8sMapper.java => AlertSendStatusMapper.java} |   8 +-
 .../src/main/resources/sql/dolphinscheduler_h2.sql |  17 +++
 .../main/resources/sql/dolphinscheduler_mysql.sql  |  16 +++
 .../resources/sql/dolphinscheduler_postgresql.sql  |  15 +++
 .../apache/dolphinscheduler/dao/AlertDaoTest.java  |   6 +
 .../dao/mapper/AlertSendStatusMapperTest.java      |  53 ++++++++
 10 files changed, 295 insertions(+), 10 deletions(-)
 create mode 100644 dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/entity/AlertSendStatus.java
 copy dolphinscheduler-dao/src/main/java/org/apache/dolphinscheduler/dao/mapper/{K8sMapper.java => AlertSendStatusMapper.java} (86%)
 create mode 100644 dolphinscheduler-dao/src/test/java/org/apache/dolphinscheduler/dao/mapper/AlertSendStatusMapperTest.java