Skip to content

Commit b9f4fc9

Browse files
author
Ilyas Gasanov
committed
[DOP-19901] Add integration MSSQL tests & CI
1 parent 476d15b commit b9f4fc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

syncmaster/worker/handlers/db/mssql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def connect(self, spark: SparkSession):
2828
user=self.connection_dto.user,
2929
password=self.connection_dto.password,
3030
database=self.connection_dto.database_name,
31-
extra=self.connection_dto.additional_params or {"trustServerCertificate": "true"},
31+
extra={**self.connection_dto.additional_params, "trustServerCertificate": "true"},
3232
spark=spark,
3333
).check()
3434

0 commit comments

Comments
 (0)