Commit 80cf4749 by Sebastian Meiser

changed HipchatNotifierConfiguration to be a static class, otherwise application…

changed HipchatNotifierConfiguration to be a static class, otherwise application context doesn't start up when hipchat notification is enabled.
parent e1aadeb2
......@@ -82,7 +82,7 @@ public class NotifierConfiguration {
@Configuration
@ConditionalOnProperty(prefix = "spring.boot.admin.notify.hipchat", name = "url")
@AutoConfigureBefore({ NotifierListenerConfiguration.class })
public class HipchatNotifierConfiguration {
public static class HipchatNotifierConfiguration {
@Bean
@ConditionalOnMissingBean
@ConditionalOnProperty(prefix = "spring.boot.admin.notify.hipchat", name = "enabled", matchIfMissing = true)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment