Skip to content

Commit 9f5f63c

Browse files
committed
pass through env var
1 parent 2ddeb8e commit 9f5f63c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cli/agent.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,9 @@ func (r *RootCmd) workspaceAgent() *serpent.Command {
283283
if v, ok := os.LookupEnv(agent.EnvProcPrioMgmt); ok {
284284
environmentVariables[agent.EnvProcPrioMgmt] = v
285285
}
286+
if v, ok := os.LookupEnv(agent.EnvProcOOMScore); ok {
287+
environmentVariables[agent.EnvProcOOMScore] = v
288+
}
286289

287290
agnt := agent.New(agent.Options{
288291
Client: client,

0 commit comments

Comments
 (0)