Jonathan Riche
Jonathan Riche
Explore posts from servers
BABetter Auth
Created by Jonathan Riche on 3/31/2025 in #help
SolidJS useSession hook - refetch
Awesome thanks for confirming
4 replies
BABetter Auth
Created by Jonathan Riche on 3/26/2025 in #help
Custom Session running twice on GET /api/auth/get-session
@bekacru
14 replies
BABetter Auth
Created by Jonathan Riche on 3/26/2025 in #help
Custom Session running twice on GET /api/auth/get-session
OK i had to do something funky i literaly had to copy over your customSessionClientPlugin and make this change
async (ctx) => {
const session = await getSessionFromCtx(ctx);
if (!session) {
return ctx.json(null);
}
if (!ctx.request?.url) {
console.log('skipping runnig session function')
return { user: session.user, session: session.session };
}

if (ctx.request?.url?.includes(route)) {
console.log('custom session is running correctly');

}
const fnResult = await fn(session as any);
return ctx.json(fnResult);

// return ctx;
}
async (ctx) => {
const session = await getSessionFromCtx(ctx);
if (!session) {
return ctx.json(null);
}
if (!ctx.request?.url) {
console.log('skipping runnig session function')
return { user: session.user, session: session.session };
}

if (ctx.request?.url?.includes(route)) {
console.log('custom session is running correctly');

}
const fnResult = await fn(session as any);
return ctx.json(fnResult);

// return ctx;
}
Left everything else the same this is working now not sure where teh extra call was coiming from might be something on the hono end but its working regardless now...
14 replies
BABetter Auth
Created by Jonathan Riche on 3/26/2025 in #help
Custom Session running twice on GET /api/auth/get-session
@bekacru
14 replies
BABetter Auth
Created by Jonathan Riche on 3/26/2025 in #help
Custom Session running twice on GET /api/auth/get-session
ie
import { createAuthClient } from "better-auth/solid";
import { customSessionClient } from "better-auth/client/plugins";
import type { AuthReturnType } from "./auth";

export const authClient = createAuthClient({
plugins: [customSessionClient<AuthReturnType>()],

});
import { createAuthClient } from "better-auth/solid";
import { customSessionClient } from "better-auth/client/plugins";
import type { AuthReturnType } from "./auth";

export const authClient = createAuthClient({
plugins: [customSessionClient<AuthReturnType>()],

});
import { authClient } from "@lib/auth-client";
export const Layout: ParentComponent = (props) => {
const session = authClient.useSession();

//OTHER PARTS OF COMPONENT

return(
<Show when={session().data}>
//other compoennts

</Show>

)
};
import { authClient } from "@lib/auth-client";
export const Layout: ParentComponent = (props) => {
const session = authClient.useSession();

//OTHER PARTS OF COMPONENT

return(
<Show when={session().data}>
//other compoennts

</Show>

)
};
14 replies
BABetter Auth
Created by Jonathan Riche on 3/26/2025 in #help
Custom Session running twice on GET /api/auth/get-session
outside of using const session = authClient.useSession(); oneced in my layout component what else trgigers the get session i only see it firing once in the network tab* ie im using the solid js import { createAuthClient } from "better-auth/solid";
14 replies
BABetter Auth
Created by Jonathan Riche on 3/26/2025 in #help
Custom Session running twice on GET /api/auth/get-session
@bekacru
14 replies
BABetter Auth
Created by Jonathan Riche on 3/26/2025 in #help
Custom Session running twice on GET /api/auth/get-session
14 replies
BABetter Auth
Created by Jonathan Riche on 3/26/2025 in #help
Custom Session running twice on GET /api/auth/get-session




14 replies
BABetter Auth
Created by Jonathan Riche on 3/26/2025 in #help
Custom Session running twice on GET /api/auth/get-session
yes got i here its
14 replies
CDCloudflare Developers
Created by Jonathan Riche on 3/4/2024 in #general-help
Paid Workers Plan CPU Timeout under 5 seconds
confirming this works on my end now thanks @Chaika @Erisa | Support Engineer
14 replies
CDCloudflare Developers
Created by Jonathan Riche on 3/4/2024 in #general-help
Paid Workers Plan CPU Timeout under 5 seconds
Thanks will do
14 replies
CDCloudflare Developers
Created by Jonathan Riche on 3/4/2024 in #general-help
Paid Workers Plan CPU Timeout under 5 seconds
Thanks I just sent it to you
14 replies
CDCloudflare Developers
Created by Jonathan Riche on 3/4/2024 in #general-help
Paid Workers Plan CPU Timeout under 5 seconds
I tried to change the cpu_ms limit after that and its not editable : workers.api.error.cpu_ms_limit_not_allowed_for_usage_model [code: 10205] -- b/c of the message here : https://developers.cloudflare.com/workers/platform/pricing Custom limits To prevent accidental runaway bills or denial-of-wallet attacks, configure the maximum amount of CPU time that can be used per invocation by defining limits in your Worker’s wrangler.toml file, or via the Cloudflare dashboard (Workers & Pages > Select your Worker > Settings > CPU Limits). If you had a Worker on the Bundled usage model prior to the migration to Standard pricing on March 1, 2024, Cloudflare has automatically added a 50 ms CPU limit on your Worker.
14 replies
CDCloudflare Developers
Created by Jonathan Riche on 3/4/2024 in #general-help
Paid Workers Plan CPU Timeout under 5 seconds
They got "migrated" to the standard plan a few days ago All users on the Workers Paid plan have been automatically migrated from the Bundled and Unbound usage models to the Standard usage model on March 1, 2024 is there a way to toggle CPU/plan now since that change?
14 replies
CDCloudflare Developers
Created by Jonathan Riche on 3/4/2024 in #general-help
Paid Workers Plan CPU Timeout under 5 seconds
Deployed only*
14 replies
CDCloudflare Developers
Created by Jonathan Riche on 3/4/2024 in #general-help
Paid Workers Plan CPU Timeout under 5 seconds
const validPassword = await new Scrypt().verify(checkForUser[0].hashedPassword!, password);
14 replies
CDCloudflare Developers
Created by Jonathan Riche on 3/4/2024 in #general-help
Paid Workers Plan CPU Timeout under 5 seconds
To clarify it works sometimes and when the login takes an extra second or so occasionally it erros out with the Exceeded CPU Limit error message the Scypt.verify is what is timeing out
14 replies