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
let enable_tls_peer_verification_source_cmd = Command::new("enable_tls_peer_verification_for_all_source_uris")
3150
+
.about("Enables TLS peer verification for all shovel source URIs with provided [RabbitMQ node-local] certificate paths.")
3151
+
.long_about("Enables TLS peer verification for all shovel source URIs by updating their 'verify' parameter and adding [RabbitMQ node-local] certificate and private key file paths.")
3152
+
.arg(
3153
+
Arg::new("node_local_ca_certificate_bundle_path")
3154
+
.long("node-local-ca-certificate-bundle-path")
3155
+
.help("Path to the CA certificate bundle file on the target RabbitMQ node(s)")
let enable_tls_peer_verification_dest_cmd = Command::new("enable_tls_peer_verification_for_all_destination_uris")
3185
+
.about("Enables TLS peer verification for all shovel destination URIs with provided [RabbitMQ node-local] certificate paths.")
3186
+
.long_about("Enables TLS peer verification for all shovel destination URIs by updating their 'verify' parameter and adding [RabbitMQ node-local] certificate and private key file paths.")
3187
+
.arg(
3188
+
Arg::new("node_local_ca_certificate_bundle_path")
3189
+
.long("node-local-ca-certificate-bundle-path")
3190
+
.help("Path to the CA certificate bundle file on the target RabbitMQ node(s)")
0 commit comments