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