mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 11:42:24 +08:00
Update index.ts
This commit is contained in:
parent
c9073a747c
commit
ffc3b7c5fb
|
@ -45,7 +45,6 @@ if (cluster.isMaster) {
|
|||
|
||||
app.use(cors()); // Add this line to enable CORS
|
||||
|
||||
const queueRedis = new Redis(process.env.REDIS_URL);
|
||||
|
||||
const serverAdapter = new ExpressAdapter();
|
||||
serverAdapter.setBasePath(`/admin/${process.env.BULL_AUTH_KEY}/queues`);
|
||||
|
@ -318,6 +317,8 @@ if (cluster.isMaster) {
|
|||
`/admin/${process.env.BULL_AUTH_KEY}/redis-health`,
|
||||
async (req, res) => {
|
||||
try {
|
||||
const queueRedis = new Redis(process.env.REDIS_URL);
|
||||
|
||||
const testKey = "test";
|
||||
const testValue = "test";
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user