Skip to content

Commit

Permalink
chore: Release v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Vilsol committed May 25, 2023
1 parent 913f6f0 commit 40cb31b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.9 (May 24th, 2023)

- ensure redis is connected

## 0.0.8 (October 28th, 2022)

- fix Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@restorecommerce/catalog-srv",
"version": "0.0.8",
"version": "0.0.9",
"description": "Restore Commerce microservice for catalog and offers",
"main": "./lib/index.js",
"author": "n-fuse GmbH",
Expand Down
1 change: 1 addition & 0 deletions src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ export class Worker {
const redisConfig = cfg.get('redis');
redisConfig.db = this.cfg.get('redis:db-indexes:db-subject');
this.redisClient = createClient(redisConfig);
await this.redisClient.connect();

// list of service names
const serviceNamesCfg = cfg.get('serviceNames');
Expand Down

0 comments on commit 40cb31b

Please sign in to comment.