You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/options.ts
+6-2
Original file line number
Diff line number
Diff line change
@@ -146,9 +146,13 @@ const ExecutionIdOption = new ConfigurableOption(
146
146
(typeofx==='boolean'&&x)||
147
147
(typeofx==='string'&&x.toLowerCase()==='true');
148
148
if(isTrue&&!isVersionSatisfied){
149
-
thrownewOptionsError(
150
-
`Execution id is only supported with Node.js versions ${requiredNodeJsVersionForLogExecutionID} and above. Your current version is ${nodeVersion}. Please upgrade.`
149
+
console.warn(
150
+
`Execution id is only supported with Node.js versions
151
+
${requiredNodeJsVersionForLogExecutionID} and above. Your
152
+
current version is ${nodeVersion}. Please upgrade.`
151
153
);
154
+
console.warn('Proceeding with execution id support disabled...');
0 commit comments