jfrazee commented on a change in pull request #4535:
URL: https://github.com/apache/nifi/pull/4535#discussion_r490542737



##########
File path: 
nifi-nar-bundles/nifi-azure-bundle/nifi-azure-processors/src/main/java/org/apache/nifi/processors/azure/storage/PutAzureBlobStorage.java
##########
@@ -73,11 +73,23 @@
             .required(true)
             .build();
 
+    public static final PropertyDescriptor CREATE_CONTAINER = new 
PropertyDescriptor.Builder()
+            .name("azure-create-container")
+            .displayName("Create Container")
+            .expressionLanguageSupported(ExpressionLanguageScope.NONE)
+            .required(true)
+            .addValidator(StandardValidators.BOOLEAN_VALIDATOR)
+            .allowableValues("true", "false")
+            .defaultValue("true")

Review comment:
       ```suggestion
               .defaultValue("false")
   ```
   Since we hit an upgrade failure with this I think the default should go back 
to the old behavior. What do you think?




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to