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-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@ def __init__(
44
44
self,
45
45
token_resolver: Callable[[str, str], str|None],
46
46
cluster_category: str="prod",
47
+
use_s2s_endpoint: bool=False,
47
48
**kwargs: Any,
48
49
):
49
50
iftoken_resolverisNone:
@@ -53,6 +54,7 @@ def __init__(
53
54
self._lock=threading.Lock()
54
55
self._token_resolver=token_resolver
55
56
self._cluster_category=cluster_category
57
+
self.use_s2s_endpoint=use_s2s_endpoint
56
58
57
59
# ------------- SpanExporter API -----------------
0 commit comments