Skip to content

Commit

Permalink
fix: fix error in reading port
Browse files Browse the repository at this point in the history
  • Loading branch information
bilalshaikh42 committed May 19, 2021
1 parent 3ada609 commit e1f6fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biosimulations/apps/dispatch-service/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import { SimulationStatusService } from './services/simulationStatus.service';
useFactory: async (configService: ConfigService) => ({
redis: {
host: configService.get('queue.host'),
port: +configService.get('queue.port'),
port: configService.get('queue.port'),
},
}),
inject: [ConfigService],
Expand Down

0 comments on commit e1f6fb9

Please sign in to comment.