Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dataops-testgen"
version = "3.7.8"
version = "3.7.9"
description = "DataKitchen's Data Quality DataOps TestGen"
authors = [
{ "name" = "DataKitchen, Inc.", "email" = "info@datakitchen.io" },
Expand Down
1 change: 1 addition & 0 deletions testgen/ui/views/connections/page.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ def show_connection_form(self, selected_connection: dict, _mode: str, project_co
FlavorForm = BaseConnectionForm.for_flavor(sql_flavor)
if connection:
connection["password"] = connection["password"] or ""
connection["private_key"] = connection["private_key"] or ""

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