We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f87af8f commit bcff155Copy full SHA for bcff155
src/client/options.rs
@@ -2156,6 +2156,13 @@ impl ConnectionString {
2156
))
2157
}
2158
},
2159
+ #[cfg(not(feature = "cert-key-password"))]
2160
+ "tlscertificatekeyfilepassword" => {
2161
+ return Err(Error::invalid_argument(
2162
+ "the cert-key-password feature must be enabled to specify \
2163
+ tlsCertificateKeyFilePassword in the URI",
2164
+ ));
2165
+ }
2166
"uuidrepresentation" => match value.to_lowercase().as_str() {
2167
"csharplegacy" => self.uuid_representation = Some(UuidRepresentation::CSharpLegacy),
2168
"javalegacy" => self.uuid_representation = Some(UuidRepresentation::JavaLegacy),
0 commit comments