forked from lsmyrnaios/UrlsController
Fix property naming missmatch.
This commit is contained in:
parent
8b5f143b0a
commit
551c4acef5
|
@ -7,7 +7,7 @@ import org.springframework.stereotype.Component;
|
|||
import java.util.Map;
|
||||
|
||||
@Component
|
||||
@ConfigurationProperties(prefix = "bulkimport")
|
||||
@ConfigurationProperties(prefix = "bulk-import")
|
||||
public class BulkImport {
|
||||
|
||||
private String baseBulkImportLocation;
|
||||
|
|
|
@ -19,7 +19,7 @@ services:
|
|||
|
||||
assignmentLimit: 10000
|
||||
maxAttemptsPerRecord: 3
|
||||
baseFilesLocation: tmp/
|
||||
baseFilesLocation: /tmp/
|
||||
workerReportsDirPath: /reports/workerReports/
|
||||
parquetLocalDirectoryPath: ${services.pdfaggregation.controller.baseFilesLocation}parquetFiles/
|
||||
s3:
|
||||
|
@ -32,7 +32,7 @@ services:
|
|||
shouldShowAllS3Buckets: true
|
||||
|
||||
|
||||
bulkImport:
|
||||
bulk-import:
|
||||
baseBulkImportLocation: /mnt/bulk_import/
|
||||
bulkImportReportLocation: /reports/bulkImportReports/
|
||||
bulkImportSources: # These sources are accepted for bulk-import requests and are excluded from crawling.
|
||||
|
|
Loading…
Reference in New Issue