Skip to content

Commit ca30706

Browse files
Adding PipelineFeatureSource for Node24 knobs
1 parent fd365a6 commit ca30706

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Agent.Sdk/Knob/AgentKnobs.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,14 @@ public class AgentKnobs
205205
"Forces the agent to use Node 24 handler for all Node-based tasks",
206206
new RuntimeKnobSource("AGENT_USE_NODE24"),
207207
new EnvironmentKnobSource("AGENT_USE_NODE24"),
208+
new PipelineFeatureSource("UseNode24"),
208209
new BuiltInDefaultKnobSource("false"));
209210
public static readonly Knob UseNode24InUnsupportedSystem = new Knob(
210211
nameof(UseNode24InUnsupportedSystem),
211212
"Forces the agent to use Node 24 handler for all Node-based tasks, even if it's in an unsupported system",
212213
new RuntimeKnobSource("AGENT_USE_NODE24_IN_UNSUPPORTED_SYSTEM"),
213214
new EnvironmentKnobSource("AGENT_USE_NODE24_IN_UNSUPPORTED_SYSTEM"),
215+
new PipelineFeatureSource("UseNode24InUnsupportedSystem"),
214216
new BuiltInDefaultKnobSource("false"));
215217

216218
public static readonly Knob FetchByCommitForFullClone = new Knob(

0 commit comments

Comments
 (0)