apucher closed pull request #3492: [TE] config - fix broken defaults URL: https://github.com/apache/incubator-pinot/pull/3492
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/thirdeye/thirdeye-pinot/config/dashboard.yml b/thirdeye/thirdeye-pinot/config/dashboard.yml index be3f2464a2..6104217604 100644 --- a/thirdeye/thirdeye-pinot/config/dashboard.yml +++ b/thirdeye/thirdeye-pinot/config/dashboard.yml @@ -19,9 +19,10 @@ rootCause: dashboardHost: "http://localhost:1426" failureFromAddress: thirdeye@localhost failureToAddress: user@localhost -smtpConfiguration: - smtpHost: localhost - smtpPort: 25 +alerterConfiguration: + smtpConfiguration: + smtpHost: localhost + smtpPort: 25 server: type: default applicationConnectors: diff --git a/thirdeye/thirdeye-pinot/config/detector.yml b/thirdeye/thirdeye-pinot/config/detector.yml index 8a6e0ac1d3..1cb9fcb6dc 100644 --- a/thirdeye/thirdeye-pinot/config/detector.yml +++ b/thirdeye/thirdeye-pinot/config/detector.yml @@ -25,11 +25,10 @@ detectionPipeline: false detectionAlert: false dashboardHost: "http://localhost:1426" id: 0 -smtpConfiguration: - smtpHost: "localhost" - smtpPort: 25 - smtpUser: "" - smtpPassword: "" +alerterConfiguration: + smtpConfiguration: + smtpHost: "localhost" + smtpPort: 25 failureFromAddress: "thirdeye@localhost" failureToAddress: "thirdeye@localhost" phantomJsPath: "/usr/local/bin/jstf" ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
