You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue with timeouts after long periods of inactivity
Not sure if this is an Elysia issue, bun or a plugin issue, but sometimes this plugin just stops working
I am currently using bun 1.0.15 and if I don't hit any graphql endpoint for a while, say 20 minutes, I have to restart the server all over again
The issue is on the /graphql endpoint which I am hitting like this
Issue with timeouts after long periods of inactivity
Not sure if this is an Elysia issue, bun or a plugin issue, but sometimes this plugin just stops working
I am currently using bun 1.0.15 and if I don't hit any graphql endpoint for a while, say 20 minutes, I have to restart the server all over again
The issue is on the /graphql endpoint which I am hitting like this
const app = new Elysia() .use(cors()) .use( apollo({ schema, path: "/graphql", enablePlayground: true, context: async ({ request }) => { return { db: queryClient }; }, } as ElysiaApolloConfig) ) .listen(8080);
The text was updated successfully, but these errors were encountered: