Skip to content

Commit f4256cf

Browse files
authored
Merge pull request #37 from DataKitchen/snowflake-connection-fix
fix(connection): bug in snowflake connection form
2 parents 8d790d3 + 407f777 commit f4256cf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
name = "dataops-testgen"
11-
version = "3.7.8"
11+
version = "3.7.9"
1212
description = "DataKitchen's Data Quality DataOps TestGen"
1313
authors = [
1414
{ "name" = "DataKitchen, Inc.", "email" = "info@datakitchen.io" },

testgen/ui/views/connections/page.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ def show_connection_form(self, selected_connection: dict, _mode: str, project_co
9797
FlavorForm = BaseConnectionForm.for_flavor(sql_flavor)
9898
if connection:
9999
connection["password"] = connection["password"] or ""
100+
connection["private_key"] = connection["private_key"] or ""
100101

101102
form_kwargs = connection or {"sql_flavor": sql_flavor, "connection_id": connection_id, "connection_name": connection_name}
102103
form = FlavorForm(**form_kwargs)

0 commit comments

Comments
 (0)