Jonathan Riche
Jonathan Riche
Explore posts from servers
BABetter Auth
Created by Jonathan Riche on 3/31/2025 in #help
SolidJS useSession hook - refetch
I'm trying to use the solidjs hook for the store of the useSession hook and got everything working in terms of loading user data in etc, only thing i want to to is force a refetch of the session and noticed when debugging there is a refetch method attached to the hook but it's not declared in the types ie
const session = authClient.useSession();
await session().refetch();
const session = authClient.useSession();
await session().refetch();
the above actually works just want to double check if this is the intended way to go about it? or should i be relying on a separate store outside of what im using from the hook
4 replies
BABetter Auth
Created by Jonathan Riche on 3/26/2025 in #help
Custom Session running twice on GET /api/auth/get-session
I'm trying out custom session to return some additonal team fields on the repsonse to use on the client side and i noticed(sinces its making a call to the db and i have the logger on) it's running the custom Session method twice for every single call to GET /api/auth/get-session is this to be expected or have i done something funky in my config my custom session looks like the following:
customSession(async ({ user, session }) => {
if (config.dev) console.log('custom session is running');
const userTeams = await getUserTeam(DrizzlePgPool(config.db), user.id);
// console.log('userTeams:', userTeams, session);
return {
user,
teams: userTeams,
session
}
})
customSession(async ({ user, session }) => {
if (config.dev) console.log('custom session is running');
const userTeams = await getUserTeam(DrizzlePgPool(config.db), user.id);
// console.log('userTeams:', userTeams, session);
return {
user,
teams: userTeams,
session
}
})
on my logs you can see the request being called once but customsession is running twice?
[wrangler:inf] GET /api/auth/get-session 200 OK (54ms)
custom session is running
Query: select "team_member"."role", "team_member"."team_id", "team"."name" from "team_member" left join "team" on "team_member"."team_id" = "team"."id" where "team_member"."user_id" = $1 -- params: ["USERID
"]
custom session is running
Query: select "team_member"."role", "team_member"."team_id", "team"."name" from "team_member" left join "team" on "team_member"."team_id" = "team"."id" where "team_member"."user_id" = $1 -- params: ["USERID"]
[wrangler:inf] GET /static/apple-touch-icon.png 200 OK (41ms)
[wrangler:inf] GET /static/favicon-32x32.png 200 OK (40
ms)
[wrangler:inf] GET /api/auth/get-session 200 OK (54ms)
custom session is running
Query: select "team_member"."role", "team_member"."team_id", "team"."name" from "team_member" left join "team" on "team_member"."team_id" = "team"."id" where "team_member"."user_id" = $1 -- params: ["USERID
"]
custom session is running
Query: select "team_member"."role", "team_member"."team_id", "team"."name" from "team_member" left join "team" on "team_member"."team_id" = "team"."id" where "team_member"."user_id" = $1 -- params: ["USERID"]
[wrangler:inf] GET /static/apple-touch-icon.png 200 OK (41ms)
[wrangler:inf] GET /static/favicon-32x32.png 200 OK (40
ms)
14 replies
CDCloudflare Developers
Created by Jonathan Riche on 3/4/2024 in #general-help
Paid Workers Plan CPU Timeout under 5 seconds
#workers-help I've set up a worker for my Sveltekit app and the app is running as expected except occasionally when trying to login. I use Scrypt for the hashing method it is randomly timing out after a 2-3 second wait on the page load I get the Worker exceeded CPU time limit error message. Is the paid plan not supposed to be able to go up to Max of 30 seconds of CPU time per invocation?, am I missing something?
14 replies
CDCloudflare Developers
Created by Jonathan Riche on 5/30/2023 in #workers-help
Postgresql Beta
Hey all I've been trying to use the new postgresql beta --> https://developers.cloudflare.com/workers/databases/connect-to-postgres/ and got it working fully functional in development with an Amazaon RDS postgres db, but can't get it working when I push to prod. I've added all the cloudflare ips(https://www.cloudflare.com/en-ca/ips/) to my security group is there something else I'm missing?
5 replies