Skip to content

Commit

Permalink
[ioredis plugin] fix: change supportedVersions to >1 <5 (#671)
Browse files Browse the repository at this point in the history
* fix: change supportedVersions to 4.x.x

* fix: supported versions

Co-authored-by: Daniel Dyla <dyladan@users.noreply.github.com>
  • Loading branch information
Naseem and dyladan committed Jan 28, 2020
1 parent 3dd2a68 commit 7949e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/opentelemetry-plugin-ioredis/src/ioredis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { VERSION } from './version';
export class IORedisPlugin extends BasePlugin<typeof ioredisTypes> {
static readonly COMPONENT = 'ioredis';
static readonly DB_TYPE = 'redis';
readonly supportedVersions = ['^2.0.0'];
readonly supportedVersions = ['>1 <5'];

constructor(readonly moduleName: string) {
super('@opentelemetry/plugin-ioredis', VERSION);
Expand Down

0 comments on commit 7949e3f

Please sign in to comment.