Skip to content

Commit

Permalink
Add branch as one of the create_client kwargs. (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpetrovykh authored Apr 5, 2024
1 parent c666a6f commit 3fb15b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions edgedb/asyncio_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,7 @@ def create_async_client(
password: str = None,
secret_key: str = None,
database: str = None,
branch: str = None,
tls_ca: str = None,
tls_ca_file: str = None,
tls_security: str = None,
Expand All @@ -431,6 +432,7 @@ def create_async_client(
password=password,
secret_key=secret_key,
database=database,
branch=branch,
tls_ca=tls_ca,
tls_ca_file=tls_ca_file,
tls_security=tls_security,
Expand Down
2 changes: 2 additions & 0 deletions edgedb/blocking_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,7 @@ def create_client(
password: str = None,
secret_key: str = None,
database: str = None,
branch: str = None,
tls_ca: str = None,
tls_ca_file: str = None,
tls_security: str = None,
Expand All @@ -445,6 +446,7 @@ def create_client(
password=password,
secret_key=secret_key,
database=database,
branch=branch,
tls_ca=tls_ca,
tls_ca_file=tls_ca_file,
tls_security=tls_security,
Expand Down

0 comments on commit 3fb15b1

Please sign in to comment.