Skip to content

Commit

Permalink
Modifies EncryptionLevel to Off instead of NotSupported
Browse files Browse the repository at this point in the history
  • Loading branch information
boersmamarcel committed Nov 18, 2024
1 parent 4fc8b25 commit a455669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connectorx/src/sources/mssql/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pub fn mssql_config(url: &Url) -> Config {

match params.get("encrypt") {
Some(v) if v.to_lowercase() == "true" => config.encryption(EncryptionLevel::Required),
_ => config.encryption(EncryptionLevel::NotSupported),
_ => config.encryption(EncryptionLevel::Off),
};

match params.get("appname") {
Expand Down

0 comments on commit a455669

Please sign in to comment.