RED-5469 - Rename CVSERVICEENABLED to CVTABLEPARSINGENABLED

- renamed cvServiceEnabled to cvTableParsingEnabled
This commit is contained in:
devplant 2022-11-17 14:15:18 +02:00
parent 913fda17c5
commit bbc2932b74
2 changed files with 2 additions and 2 deletions

View File

@ -588,7 +588,7 @@ public class FileStatusService {
return;
}
if (!reanalyse && !fileManagementStorageService.objectExists(dossierId, fileId, FileType.TABLES) && settings.isCvServiceEnabled()) {
if (!reanalyse && !fileManagementStorageService.objectExists(dossierId, fileId, FileType.TABLES) && settings.isCvTableParsingEnabled()) {
log.debug("Add file: {} from dossier {} to Cv Service queue", fileId, dossierId);
addToTableParsingRequestQueue(dossierId, fileId);
return;

View File

@ -30,7 +30,7 @@ public class FileManagementServiceSettings {
private int maxErrorRetries = 1;
private boolean cvServiceEnabled;
private boolean cvTableParsingEnabled;
private boolean figureDetectionEnabled;