We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f10888 commit fb65003Copy full SHA for fb65003
1 file changed
core/env/env.go
@@ -33,7 +33,8 @@ var (
33
NoDebugKey = " /* nD */"
34
Executable = ""
35
IsThreadChild = cast.ToBool(os.Getenv("SLING_THREAD_CHILD"))
36
- IsAgentMode = os.Getenv("SLING_AGENT_ID") != ""
+ AgentID = os.Getenv("SLING_AGENT_ID")
37
+ IsAgentMode = AgentID != ""
38
GetOAuthMap = func() map[string]map[string]any { return map[string]map[string]any{} }
39
setupOtel = func() {}
40
)
0 commit comments