Skip to content

Commit

Permalink
fix: did not read the correct redis queue env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
birme committed Jul 7, 2024
1 parent 0b0cff7 commit 8eb0e4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export interface PackagingConfig {
function readRedisConfig(): RedisConfig {
return {
url: process.env.REDIS_URL || 'redis://localhost:6379',
queueName: process.env.REDIS_QUEUE_NAME || 'packaging-queue'
queueName: process.env.REDIS_QUEUE || 'packaging-queue'
};
}

Expand Down

0 comments on commit 8eb0e4f

Please sign in to comment.