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 2021/02/01 06:49:00 UTC

[incubator-dolphinscheduler] branch dev updated (ef0def3 -> 947dcb9)

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/incubator-dolphinscheduler.git.


    from ef0def3  [Feature-3826]sql node adds alarm group field (#4602)
     new 243ad38  [Improvement][alert-spi]plugin instance only saves the main information
     new 5f23ca5  [Improvement][alert-spi]plugin instance only saves the main information
     new 82340b3  code style
     new 81e2b82  Store plug-in information when loading plug-in, query database when removing alert
     new a1e6a0f  Merge branch 'dev' into alert_param_reduce
     new 40e3795  Store plug-in information when loading plug-in, query database when removing alert Delete unused class
     new a0725e9  fix ut error
     new 65779f0  fix ut error
     new 6877073  add ut
     new 8300444  code style
     new 9072e88  removed unused fields
     new dc04f88  Merge branch 'dev' into alert_param_reduce
     new fbb77c5  merge current
     new a3bbfdb  Capture when the alarm is abnormal
     new 947dcb9  Merge pull request #4616 from CalvinKirs/alert_param_reduce

The 4400 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../alert/dingtalk/DingTalkAlertChannel.java       |   7 +-
 .../plugin/alert/email/EmailAlertChannel.java      |   7 +-
 .../alert/email/EmailAlertChannelFactoryTest.java  |  23 +----
 .../plugin/alert/email/EmailAlertChannelTest.java  |   6 +-
 .../plugin/alert/feishu/FeiShuAlertChannel.java    |   7 +-
 .../plugin/alert/http/HttpAlertChannel.java        |   7 +-
 .../plugin/alert/http/HttpAlertChannelTest.java    |   7 +-
 .../plugin/alert/script/ScriptAlertChannel.java    |   7 +-
 .../script/ScriptAlertChannelFactoryTest.java      |   2 -
 .../plugin/alert/wechat/WeChatAlertChannel.java    |   7 +-
 .../apache/dolphinscheduler/alert/AlertServer.java |   7 +-
 .../alert/manager/EmailManager.java                |  55 -----------
 .../dolphinscheduler/alert/manager/MsgManager.java |  40 --------
 .../alert/plugin/AlertPluginManager.java           |  13 ++-
 .../alert/processor/AlertRequestProcessor.java     |   9 +-
 .../dolphinscheduler/alert/runner/AlertSender.java |  26 +++--
 .../dolphinscheduler/alert/AlertServerTest.java    |   9 +-
 .../alert/plugin/EmailAlertPluginTest.java         |   2 +-
 .../alert/processor/AlertRequestProcessorTest.java |  11 +--
 .../alert/runner/AlertSenderTest.java              |  36 +++----
 .../impl/AlertPluginInstanceServiceImpl.java       |  65 ++++++++++--
 .../service/AlertPluginInstanceServiceTest.java    | 109 ++++++++++++++++++++-
 .../org/apache/dolphinscheduler/dao/PluginDao.java |  18 ++--
 .../dolphinscheduler/spi/alert/AlertInfo.java      |   8 +-
 .../dolphinscheduler/spi/alert/AlertResult.java    |   8 ++
 .../spi/params/base/PluginParams.java              |   4 +
 26 files changed, 291 insertions(+), 209 deletions(-)
 delete mode 100644 dolphinscheduler-alert/src/main/java/org/apache/dolphinscheduler/alert/manager/EmailManager.java
 delete mode 100644 dolphinscheduler-alert/src/main/java/org/apache/dolphinscheduler/alert/manager/MsgManager.java