Skip to content

Commit

Permalink
Make RegisterZipkinHealthIndicators public for custom zipkin server i…
Browse files Browse the repository at this point in the history
…nstances. (#1597)
  • Loading branch information
garyd203 authored and adriancole committed May 17, 2017
1 parent 5d15b5d commit 0295e98
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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
Expand All @@ -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;
Expand Down

0 comments on commit 0295e98

Please sign in to comment.