Revert accidental call to `.close()`
Remove call to `.close()` which was accidentally left in after some performance testing.
This commit is contained in:
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…
Reference in New Issue