Commit 3b93bb46 authored by Phillip Webb's avatar Phillip Webb

Revert accidental call to `.close()`

Remove call to `.close()` which was accidentally left in after some
performance testing.
parent ad38776d
...@@ -28,7 +28,7 @@ import org.springframework.context.annotation.Bean; ...@@ -28,7 +28,7 @@ import org.springframework.context.annotation.Bean;
public class SampleActuatorApplication { public class SampleActuatorApplication {
public static void main(String[] args) throws Exception { public static void main(String[] args) throws Exception {
SpringApplication.run(SampleActuatorApplication.class, args).close(); SpringApplication.run(SampleActuatorApplication.class, args);
} }
@Bean @Bean
......
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