Remove DocumentPathOrigin from DbConfig and usages
DocumentPathOrigin property and all related code references have been removed from DbConfig, ConfigModel, and FinalizeDocumentJob. DocumentPath is now used exclusively for document path handling, simplifying configuration and reducing redundancy.
This commit is contained in:
@@ -287,8 +287,8 @@ public class FinalizeDocumentJob(IOptions<WorkerOptions> options, IConfiguration
|
||||
else
|
||||
{
|
||||
logger?.LogDebug("we got bytes..");
|
||||
inputPath = _config!.DocumentPathOrigin;
|
||||
logger?.LogDebug("oInputPath: {0}", _config.DocumentPathOrigin);
|
||||
inputPath = _config!.DocumentPath;
|
||||
logger?.LogDebug("oInputPath: {0}", _config.DocumentPath);
|
||||
}
|
||||
|
||||
if (envelopeData.DocAsByte is null)
|
||||
|
||||
Reference in New Issue
Block a user