Github user pvillard31 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/232#discussion_r53195449
--- Diff:
nifi-nar-bundles/nifi-amqp-bundle/nifi-amqp-processors/src/main/java/org/apache/nifi/amqp/processors/AbstractAMQPProcessor.java
---
@@ -84,6 +89,72 @@
.allowableValues("0.9.1")
.defaultValue("0.9.1")
.build();
+ public static final PropertyDescriptor USE_SSL_PROTOCOL = new
PropertyDescriptor.Builder()
+ .name("Use SSL protocol")
+ .description("Indicates whether or not SSL protocol should be
used")
+ .allowableValues("true", "false")
+ .defaultValue("false")
+ .required(true)
+ .build();
+ public static final PropertyDescriptor VALIDATE_CERTIFICATES = new
PropertyDescriptor.Builder()
--- End diff --
@alopresto In fact I added this possibility because this is a use case
described in [the RabbitMQ documentation](https://www.rabbitmq.com/ssl.html),
and I assumed this is a possible scenario. Regarding the default value, I
definitely agree with you, my bad.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---