Running SvelteKit on Cloudflare workers I am getting this error
via
/api/auth/token
inside onSuccess
on sign-in23 Replies
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
No idea, this is my code
I think it has something to do with fetching?

trying to figure out from other people getting the error in cloudflare discord
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
I am using SvelteKit, not nextjs
What would the bearer plugin do for me?
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
That’s correct but the JWT plugin requires a token which you can just get from the returned context in this instance
I ended up moving the JWT generation to the backend and setting cookies there as well, will try cloud flare later today to see if that helps at all
Sadly I am still getting the odd cloudflare error
@bekacru Any idea what could be causing this Cloudflare error? This is bizzare one I am not sure how to fix - or is there any way to see exactly what aspect of better-auth is causing this? Is there some debug mode?
I wonder if it's something to do with running
within
svelteKitHandle
?
I think it may be failing at "get-session"are you trying to call this from the sever?
No that was on the client
I'm not familiar with the error either. Have you tried removing the
onSuccess
hook?Yea it’s not just with sign-in. Seems to happen whenever “get-session” is called but not 100%z Honestly I am wondering if this is a cloudflare issue or something
I mean something that changed on cloudflares end
the error is saying a context is share between 2 handlers but better auth won't be able to do that unless there is some mis confiugration or something is going on between the sveltekit adapter and cf.
Yea
Well here is my hooks code, if you don't mind combing over it, does it look fine to you?
I think sequence is the problem maybe. I'm not sure what it is but it seems like it's sharing the request context.
Interesting. Shouldn't it share request context? I thought that was the point
yeah on CF. you just need to export the handler without sequence
Ok I'll try
Still the same issue unfortunately
Something on every request is going on
I wonder if it's the drizzle adapter somehow?
Maybe
drizzle-orm/postgres-js
Interesting, switching to node-postgres
seems to get rid of the error but now I am getting another error
ugh
Well either way this does not seem like a better-auth error so I will figure it out
Hm I wonder if this is related?
GitHub
Cloudflare: Error: The script will never generate a response. · Iss...
Is this suited for github? Yes, this is suited for github To Reproduce Deploy or preview an aplication using Cloudlflare Pages or Workers, the issue does not show up if you use dev Try to sign in C...

@bekacru I think this is promising