Skip to content

Commit

Permalink
fix: remove redis private URL
Browse files Browse the repository at this point in the history
  • Loading branch information
agrattan0820 committed Oct 3, 2023
1 parent e6eab07 commit dc56a34
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion apps/server/src/redis.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Redis from "ioredis";

const redis = new Redis(
process.env.REDIS_PRIVATE_URL ?? process.env.REDIS_URL ?? ""
process.env.REDIS_URL ?? ""
);

// Listen to connection events to prevent TCP Issue
Expand Down
1 change: 0 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"DATABASE_URL",
"POSTGRES_URL",
"SESSION_COOKIE_DOMAIN",
"REDIS_PRIVATE_URL",
"REDIS_URL",
"PORT",
"NODE_ENV",
Expand Down

0 comments on commit dc56a34

Please sign in to comment.