Skip to content

Commit

Permalink
Fix healthcheck redis conf
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeh committed Jan 16, 2023
1 parent ddc3158 commit 9e6fe61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/health.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class HealthController {
this.microservice.pingCheck<RedisOptions>('redis', {
transport: Transport.REDIS,
options: {
host: `redis://${queueConfig.host}`,
host: `${queueConfig.host}`, //:${parseInt(queueConfig.port)}`,
port: parseInt(`${queueConfig.port}`),
},
}),
Expand Down

0 comments on commit 9e6fe61

Please sign in to comment.