diff --git a/backend/src/main/java/ai/dragon/config/JobRunrConfig.java b/backend/src/main/java/ai/dragon/config/JobRunrConfig.java index c99289fd..61730b78 100644 --- a/backend/src/main/java/ai/dragon/config/JobRunrConfig.java +++ b/backend/src/main/java/ai/dragon/config/JobRunrConfig.java @@ -5,10 +5,8 @@ import org.jobrunr.storage.StorageProvider; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.Profile; @Configuration -@Profile("!test") public class JobRunrConfig { @Bean public StorageProvider storageProvider(JobMapper jobMapper) { diff --git a/backend/src/main/java/ai/dragon/entity/IngestorEntity.java b/backend/src/main/java/ai/dragon/entity/IngestorEntity.java index 265cf7de..34dc6991 100644 --- a/backend/src/main/java/ai/dragon/entity/IngestorEntity.java +++ b/backend/src/main/java/ai/dragon/entity/IngestorEntity.java @@ -30,7 +30,6 @@ public class IngestorEntity implements IAbstractEntity { @Schema(description = "Name of the Ingestor. Must be unique.") private String name; - @NotNull @Schema(description = "Type of the Ingestor") private IngestorType type;