7
Some checks failed
deploy / deploy (push) Failing after 35s

This commit is contained in:
Lee 2023-11-13 06:22:59 +00:00
parent bdb2ffc7ba
commit 7e730ed0c9
2 changed files with 0 additions and 8 deletions

@ -17,12 +17,6 @@ ENV NEXT_TELEMETRY_DISABLED 1
ARG GIT_REV
ENV GIT_REV ${GIT_REV}
ARG SENTRY_AUTH_TOKEN
ENV SENTRY_AUTH_TOKEN ${SENTRY_AUTH_TOKEN}
ARG REDIS_URL
ENV REDIS_URL ${REDIS_URL}
RUN echo "redis url: ${REDIS_URL}"
# Build the app

@ -2,8 +2,6 @@ import { createClient } from "redis";
let redisClient = await connectRedis();
console.log(process.env.REDIS_URL);
async function connectRedis(): Promise<any> {
// console.log("Connecting to redis");
const client = createClient({