Skip to content

Commit 433177b

Browse files
committed
fix: address review comments
1 parent b2ce30d commit 433177b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

testgen/common/database/flavor/mssql_flavor_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def get_connection_string_from_fields(self):
3535
})
3636

3737
if self.sql_flavor_code == "synapse_mssql":
38-
connection_url = connection_url.update_query_dict({"autocommit": True})
38+
connection_url = connection_url.update_query_dict({"autocommit": "True"})
3939

4040
return connection_url.render_as_string(hide_password=False)
4141

testgen/ui/components/frontend/js/components/connection_form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ const AzureMSSQLForm = (
705705
if (_connectWithIdentity) {
706706
return div(
707707
{class: 'flex-row p-4 fx-justify-center text-secondary'},
708-
'Configured Microsoft Entra ID credentials will be used',
708+
'Microsoft Entra ID credentials configured on host machine will be used',
709709
);
710710
}
711711

0 commit comments

Comments
 (0)