You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries/microsoft-agents-a365-observability-core/microsoft_agents_a365/observability/core/exporters/agent365_exporter.py
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ def __init__(
44
44
self,
45
45
token_resolver: Callable[[str, str], str|None],
46
46
cluster_category: str="prod",
47
-
**kwargs: Any,
47
+
use_s2s_endpoint: bool=False,
48
48
):
49
49
iftoken_resolverisNone:
50
50
raiseValueError("token_resolver must be provided.")
@@ -53,6 +53,7 @@ def __init__(
53
53
self._lock=threading.Lock()
54
54
self._token_resolver=token_resolver
55
55
self._cluster_category=cluster_category
56
+
self._use_s2s_endpoint=use_s2s_endpoint
56
57
57
58
# ------------- SpanExporter API -----------------
0 commit comments