We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 906e04b commit 78f2ba8Copy full SHA for 78f2ba8
rest-api/src/main/java/gov/cms/qpp/conversion/api/services/internal/StorageServiceImpl.java
@@ -111,7 +111,7 @@ public InputStream getFileByLocationId(String fileLocationId) {
111
public InputStream getCpcPlusValidationFile() {
112
String bucketName = environment.getProperty(Constants.CPC_PLUS_BUCKET_NAME_VARIABLE);
113
String key = environment.getProperty(Constants.CPC_PLUS_FILENAME_VARIABLE);
114
- if (StringUtils.isEmpty(bucketName) || StringUtils.isEmpty(key)) {
+ if (StringUtils.isEmpty(bucketName) || StringUtils.isEmpty(key) || Constants.VALIDATION_DISABLE_VARIABLE.equalsIgnoreCase(key)) {
115
API_LOG.warn("No CPC+ bucket name and/or CPC+ key specified");
116
return null;
117
}
0 commit comments