You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/docs/producers.md
+1
Original file line number
Diff line number
Diff line change
@@ -308,6 +308,7 @@ The remaining configurable properties are:
308
308
- This config controls the routing key, where `%db%` and `%table%` are placeholders that will be substituted at runtime
309
309
-`rabbitmq_message_persistent` - defaults to **false**
310
310
-`rabbitmq_declare_exchange` - defaults to **true**
311
+
-`rabbitmq_use_ssl` - defaults to **false**
311
312
312
313
For more details on these options, you are encouraged to the read official RabbitMQ documentation here: [https://www.rabbitmq.com/documentation.html](https://www.rabbitmq.com/documentation.html)
parser.accepts( "rabbitmq_routing_key_template", "A string template for the routing key, '%db%' and '%table%' will be substituted. Default is '%db%.%table%'." ).withRequiredArg();
956
960
parser.accepts( "rabbitmq_message_persistent", "Message persistence. Defaults to false" ).withOptionalArg();
957
961
parser.accepts( "rabbitmq_declare_exchange", "Should declare the exchange for rabbitmq publisher. Defaults to true" ).withOptionalArg();
962
+
parser.accepts( "rabbitmq_use_ssl", "If true, will connect to the server using SSL. Defaults to false" ).withOptionalArg();
0 commit comments