Revert accidental call to `.close()`

Remove call to `.close()` which was accidentally left in after some
performance testing.
pull/8829/head
Phillip Webb 8 years ago
parent ad38776de3
commit 3b93bb46e0

@ -28,7 +28,7 @@ import org.springframework.context.annotation.Bean;
public class SampleActuatorApplication {
public static void main(String[] args) throws Exception {
SpringApplication.run(SampleActuatorApplication.class, args).close();
SpringApplication.run(SampleActuatorApplication.class, args);
}
@Bean

Loading…
Cancel
Save