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
diag.error('Not sure how to handle multiple files for instrumentations for ${instrumentationName} when none is found with name ${instrumentedFileName}');
67
-
return;
54
+
}
55
+
56
+
if (instrumentation.files?.length) {
57
+
for (const file of instrumentation.files.filter(f => f.name === '${path}')) {
58
+
if (!file.supportedVersions.some(v => satisfies('${moduleVersion}', v))) {
59
+
diag.debug('Skipping instrumentation for ' + path + '@' + moduleVersion + ' because it does not match supported versions' + f.supportedVersions.join(','));
0 commit comments