Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
LordFarquaadtheCreator committed Jun 11, 2024
1 parent 4b7631d commit 366c161
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import https from 'https';

const PORT = 3000;
const INTERVAL = secondsToMs(60 * 60); // 1 hr
const TIMEOUT = secondsToMs(10);
const TIMEOUT = secondsToMs(30);
const app = express();
let dbAval: boolean = true;

Expand All @@ -30,7 +30,6 @@ setInterval(async () => {
app.use(cors());
app.use((req: any, res: any, next: any) => {
logger.info(`Received a ${req.method} request for ${req.url}`);

next();
});

Expand Down

0 comments on commit 366c161

Please sign in to comment.