add missing @EnableAsync

This commit is contained in:
Carsten Otto
2022-05-15 18:00:37 +02:00
parent 215e0bc23b
commit 4fe2a4e71b

View File

@@ -2,8 +2,10 @@ package de.cotto.lndmanagej;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
@EnableAsync
@EnableScheduling
@SpringBootApplication
public class Application {