remove caching until i can find a good solution
Some checks failed
Deploy to Dokku / docker (ubuntu-latest) (push) Failing after 17s

This commit is contained in:
Lee
2024-06-26 16:17:57 +01:00
parent 805da78cad
commit 4d891e1825
13 changed files with 27 additions and 32 deletions

View File

@ -7,7 +7,6 @@ import lombok.SneakyThrows;
import lombok.extern.log4j.Log4j2;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.scheduling.annotation.EnableScheduling;
import java.io.File;
@ -15,7 +14,7 @@ import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
import java.util.Objects;
@EnableCaching @EnableScheduling
@EnableScheduling
@SpringBootApplication
@Log4j2(topic = "Ember")
public class BatApplication {