File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ def __init__(
40
40
gql_factory : GraphQLClientFactory [TGQLClient ],
41
41
adbc_factory : ADBCClientFactory [TADBCClient ],
42
42
timeout : Optional [Union [TimeoutOptions , float , int ]] = None ,
43
+ client_partner_source : Optional [str ] = None ,
43
44
) -> None :
44
45
"""Initialize the Semantic Layer client.
45
46
@@ -50,6 +51,7 @@ def __init__(
50
51
gql_factory: class of the underlying GQL client
51
52
adbc_factory: class of the underlying ADBC client
52
53
timeout: `TimeoutOptions` or total timeout for the underlying GraphQL client.
54
+ client_partner_source: Pass a dbt partner source header for traffic source tracking
53
55
"""
54
56
self ._has_session = False
55
57
@@ -61,6 +63,7 @@ def __init__(
61
63
auth_token = auth_token ,
62
64
url_format = env .GRAPHQL_URL_FORMAT ,
63
65
timeout = timeout ,
66
+ client_partner_source = client_partner_source
64
67
)
65
68
self ._adbc = adbc_factory (
66
69
server_host = host ,
You can’t perform that action at this time.
0 commit comments