Correção para não instanciar o redis
parent
37ab4b9564
commit
8059781c92
|
@ -7,7 +7,11 @@ import ListTicketServiceCache from "../services/TicketServices/ListTicketService
|
|||
|
||||
import { escapeCharCache } from './ContactsCache'
|
||||
|
||||
const redis = new Redis();
|
||||
let redis: any = null
|
||||
|
||||
if (process.env.CACHE) {
|
||||
redis = new Redis();
|
||||
}
|
||||
|
||||
|
||||
const redisConn = async () => {
|
||||
|
|
Loading…
Reference in New Issue