We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2062ca0 commit 103cc38Copy full SHA for 103cc38
packages/server/redis/client.ts
@@ -1,8 +1,8 @@
1
import { Redis } from "@upstash/redis";
2
3
const redis = new Redis({
4
- url: process.env.REDIS_URL,
5
- token: process.env.REDIS_TOKEN,
+ url: process.env.REDIS_URL!,
+ token: process.env.REDIS_TOKEN!,
6
});
7
8
export default redis;
0 commit comments