Skip to content

Commit

Permalink
fix: add default value for access token in HttpClient init (ClickHous…
Browse files Browse the repository at this point in the history
…e#448)

Signed-off-by: Lukas Thaler <113890185+lukasthalerINNIO@users.noreply.github.com>
  • Loading branch information
lukasthalerINNIO authored and Yibo-Chen13 committed Jan 21, 2025
1 parent 05d377c commit e78367c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion timeplus_connect/driver/httpclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self,
username: str,
password: str,
database: str,
access_token: Optional[str],
access_token: Optional[str] = None,
compress: Union[bool, str] = True,
query_limit: int = 0,
query_retries: int = 2,
Expand Down

0 comments on commit e78367c

Please sign in to comment.