diff options
Diffstat (limited to 'infra/minimal-distribution-core')
-rw-r--r-- | infra/minimal-distribution-core/src/main/java/io/fd/honeycomb/infra/distro/data/ShutdownHandlerProvider.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/minimal-distribution-core/src/main/java/io/fd/honeycomb/infra/distro/data/ShutdownHandlerProvider.java b/infra/minimal-distribution-core/src/main/java/io/fd/honeycomb/infra/distro/data/ShutdownHandlerProvider.java index 0c649b0da..a062ad1b2 100644 --- a/infra/minimal-distribution-core/src/main/java/io/fd/honeycomb/infra/distro/data/ShutdownHandlerProvider.java +++ b/infra/minimal-distribution-core/src/main/java/io/fd/honeycomb/infra/distro/data/ShutdownHandlerProvider.java @@ -25,7 +25,7 @@ public class ShutdownHandlerProvider extends ProviderTrait<ShutdownHandler> { protected ShutdownHandler create() { final ShutdownHandler handler = new ShutdownHandlerImpl(); // Make sure ShutdownHandler is run on JVM shutdown - Runtime.getRuntime().addShutdownHook(new Thread((handler::performShutdown))); + Runtime.getRuntime().addShutdownHook(new Thread(handler::performShutdown)); return handler; } } |