We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2ce30d commit 433177bCopy full SHA for 433177b
2 files changed
testgen/common/database/flavor/mssql_flavor_service.py
@@ -35,7 +35,7 @@ def get_connection_string_from_fields(self):
35
})
36
37
if self.sql_flavor_code == "synapse_mssql":
38
- connection_url = connection_url.update_query_dict({"autocommit": True})
+ connection_url = connection_url.update_query_dict({"autocommit": "True"})
39
40
return connection_url.render_as_string(hide_password=False)
41
testgen/ui/components/frontend/js/components/connection_form.js
@@ -705,7 +705,7 @@ const AzureMSSQLForm = (
705
if (_connectWithIdentity) {
706
return div(
707
{class: 'flex-row p-4 fx-justify-center text-secondary'},
708
- 'Configured Microsoft Entra ID credentials will be used',
+ 'Microsoft Entra ID credentials configured on host machine will be used',
709
);
710
}
711
0 commit comments