diff --git a/zipkin-server/src/main/java/zipkin/server/RegisterZipkinHealthIndicators.java b/zipkin-server/src/main/java/zipkin/server/RegisterZipkinHealthIndicators.java index bce7a518b78..c486fe0a9c3 100644 --- a/zipkin-server/src/main/java/zipkin/server/RegisterZipkinHealthIndicators.java +++ b/zipkin-server/src/main/java/zipkin/server/RegisterZipkinHealthIndicators.java @@ -1,5 +1,5 @@ /** - * Copyright 2015-2016 The OpenZipkin Authors + * Copyright 2015-2017 The OpenZipkin Authors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -21,7 +21,7 @@ /** Makes sure all zipkin components end up in the /health endpoint. */ // This is an application listener to ensure the graph is fully constructed before doing health -final class RegisterZipkinHealthIndicators implements ApplicationListener { +public final class RegisterZipkinHealthIndicators implements ApplicationListener { @Override public void onApplicationEvent(ApplicationEvent event) { if (!(event instanceof ApplicationReadyEvent)) return;