Skip to content

Commit ff40cc8

Browse files
authored
fix(instrumentation-graphql): limit support to >=14 <17 (#1971)
1 parent a379758 commit ff40cc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/node/opentelemetry-instrumentation-graphql/src/instrumentation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const DEFAULT_CONFIG: GraphQLInstrumentationConfig = {
6262
ignoreResolveSpans: false,
6363
};
6464

65-
const supportedVersions = ['>=14'];
65+
const supportedVersions = ['>=14 <17'];
6666

6767
export class GraphQLInstrumentation extends InstrumentationBase {
6868
constructor(

0 commit comments

Comments
 (0)