Skip to content
Snippets Groups Projects
Commit d2de8f6c authored by Henry Borasch's avatar Henry Borasch
Browse files

fixed copy-and-paste error

parent 7dd39876
No related branches found
No related tags found
2 merge requests!139928 - Validate Submission Data,!128Add Schema URI via Builder, check against existing destinations
......@@ -122,7 +122,7 @@ public class SubscriberClient {
final ValidationResult dataSchemaValidation = subscriber.validateSubmissionDataSchema(new String(decryptedData, StandardCharset.UTF_8),
metadata.getContentStructure().getData().getSubmissionSchema().getSchemaUri());
if (dataSchemaValidation.hasError()) {
LOGGER.error("Submission data does not match the provided schema", dataHashValidation.getError());
LOGGER.error("Submission data does not match the provided schema", dataSchemaValidation.getError());
return null;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment