Skip to content

Commit

Permalink
Fix db name.
Browse files Browse the repository at this point in the history
  • Loading branch information
kj415j45 committed Aug 9, 2023
1 parent 15b2d13 commit d05fada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Redis/Redis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class Redis extends TestDatabase {

async connect(uri?: string | undefined): Promise<void> {
this.redis = createClient({
url: uri ?? this.uri ?? "redis://localhost:6379/7957", // 7957 -> test
url: uri ?? this.uri ?? "redis://localhost:6379/",
});
await this.redis.connect();
this.repository = new Repository(locationSchema, this.redis);
Expand Down

0 comments on commit d05fada

Please sign in to comment.