Skip to content

Commit

Permalink
Merge pull request #309 from EigenExplorer/patch/temp-remove-user-req…
Browse files Browse the repository at this point in the history
…uest-sync

Temporarily remove user request sync cronjob
  • Loading branch information
uditdc authored Dec 18, 2024
2 parents fe027c7 + 6778dd8 commit a58f550
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/api/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import helmet from 'helmet'
import cors from 'cors'
import apiRouter from './routes'
import { EigenExplorerApiError, handleAndReturnErrorResponse } from './schema/errors'
import { startUserRequestsSync } from './utils/userRequestsSync'

const PORT = process.env.PORT ? Number.parseInt(process.env.PORT) : 3002

Expand Down Expand Up @@ -51,6 +50,4 @@ app.use((err: Error, req: Request, res: Response) => {
// Start the server
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`)

startUserRequestsSync()
})

0 comments on commit a58f550

Please sign in to comment.