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

This commit is contained in:
Lee 2023-11-13 06:24:39 +00:00
parent 7e730ed0c9
commit d1b0d85ecf
2 changed files with 1 additions and 3 deletions

@ -17,7 +17,7 @@ ENV NEXT_TELEMETRY_DISABLED 1
ARG GIT_REV
ENV GIT_REV ${GIT_REV}
RUN echo "redis url: ${REDIS_URL}"
RUN echo "redis url: $REDIS_URL"
# Build the app
RUN pnpm run build

@ -20,8 +20,6 @@ async function connectRedis(): Promise<any> {
return client;
}
// todo: add disconnect handler
export const Redis = {
client: redisClient,
connectRedis,