Skip to content

Commit 807346b

Browse files
authored
Allow redis version 3.0.0 and above (#215)
1 parent 521b17b commit 807346b

File tree

1 file changed

+1
-1
lines changed
  • plugins/node/opentelemetry-plugin-redis/src

1 file changed

+1
-1
lines changed

plugins/node/opentelemetry-plugin-redis/src/redis.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { VERSION } from './version';
2626

2727
export class RedisPlugin extends BasePlugin<typeof redisTypes> {
2828
static readonly COMPONENT = 'redis';
29-
readonly supportedVersions = ['^2.6.0']; // equivalent to >= 2.6.0 <3
29+
readonly supportedVersions = ['^2.6.0', '^3.0.0']; // equivalent to >= 2.6.0
3030

3131
constructor(readonly moduleName: string) {
3232
super('@opentelemetry/plugin-redis', VERSION);

0 commit comments

Comments
 (0)