Skip to content

Commit b7f511c

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

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Agent.Sdk/Knob/AgentKnobs.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,15 @@ 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"));
210+
209211
public static readonly Knob UseNode24InUnsupportedSystem = new Knob(
210212
nameof(UseNode24InUnsupportedSystem),
211213
"Forces the agent to use Node 24 handler for all Node-based tasks, even if it's in an unsupported system",
212214
new RuntimeKnobSource("AGENT_USE_NODE24_IN_UNSUPPORTED_SYSTEM"),
213215
new EnvironmentKnobSource("AGENT_USE_NODE24_IN_UNSUPPORTED_SYSTEM"),
216+
new PipelineFeatureSource("UseNode24InUnsupportedSystem"),
214217
new BuiltInDefaultKnobSource("false"));
215218

216219
public static readonly Knob FetchByCommitForFullClone = new Knob(

0 commit comments

Comments
 (0)