Skip to content

Commit 5fc5345

Browse files
committed
bump version
1 parent f3bfa80 commit 5fc5345

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/langtrace_python_sdk/langtrace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def get_exporter(config: LangtraceConfig, host: str):
151151
headers = get_headers(config)
152152
host = f"{host}/api/trace" if host == LANGTRACE_REMOTE_URL else host
153153
if "http" in host.lower() or "https" in host.lower():
154-
return LangTraceExporter(host, config.api_key, config.disable_logging)
154+
return HTTPExporter(endpoint=host, headers=headers)
155155
else:
156156
return GRPCExporter(endpoint=host, headers=headers)
157157

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.2.0"
1+
__version__ = "3.3.0"

0 commit comments

Comments
 (0)