Skip to content

Commit

Permalink
Update AgentKnobs.cs (#4286)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirill-ivlev committed May 19, 2023
1 parent 250f652 commit 34d4042
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Agent.Sdk/Knob/AgentKnobs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -444,14 +444,14 @@ public class AgentKnobs
"Enables passing arguments for process handler secure way",
new RuntimeKnobSource("AGENT_PH_ENABLE_SECURE_ARGUMENTS"),
new EnvironmentKnobSource("AGENT_PH_ENABLE_SECURE_ARGUMENTS"),
new BuiltInDefaultKnobSource("false"));
new BuiltInDefaultKnobSource("true"));

public static readonly Knob ProcessHandlerTelemetry = new Knob(
nameof(ProcessHandlerTelemetry),
"Enables publishing telemetry about processing of arguments for Process Handler",
new RuntimeKnobSource("AGENT_PH_ENABLE_TELEMETRY"),
new EnvironmentKnobSource("AGENT_PH_ENABLE_TELEMETRY"),
new BuiltInDefaultKnobSource("false"));
new BuiltInDefaultKnobSource("true"));

public static readonly Knob DisableDrainQueuesAfterTask = new Knob(
nameof(DisableDrainQueuesAfterTask),
Expand Down

0 comments on commit 34d4042

Please sign in to comment.