Skip to content

Commit 103cc38

Browse files
committed
Fix other problems
1 parent 2062ca0 commit 103cc38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/server/redis/client.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Redis } from "@upstash/redis";
22

33
const redis = new Redis({
4-
url: process.env.REDIS_URL,
5-
token: process.env.REDIS_TOKEN,
4+
url: process.env.REDIS_URL!,
5+
token: process.env.REDIS_TOKEN!,
66
});
77

88
export default redis;

0 commit comments

Comments
 (0)