Github user kevdoran commented on a diff in the pull request:
https://github.com/apache/nifi-registry/pull/149#discussion_r241166717
--- Diff:
nifi-registry-core/nifi-registry-data-model/src/main/java/org/apache/nifi/registry/bucket/Bucket.java
---
@@ -41,6 +41,8 @@
private String description;
+ private Boolean allowExtensionBundleRedeploy;
--- End diff --
Instead of a boolean flag here. I'm wondering if this would be better as a
Enum for something like "redeploy policy" with values such as "NEVER,
SNAPSHOTS, ALWAYS" or something like that?
---