Tyler Benfield

Results 10 comments of Tyler Benfield

It seems like the GitHub Actions pipeline isn't running since this is coming from a fork. I thought `pull_request_target` should enable that, but maybe it has to be on main...

> Hey @rtbenfield, I had to do some repository dark magic to remove a file that shouldn't have been in the repository. It would probably be easiest to redo this...

Hi @jeffreybos 👋🏻 Thanks for raising this. With your NextJS app, are you attempting to use Prisma Pulse in an edge function or serverless function?

I ran into this one as well. It looks like it's caused by attempting to remove the app directory path from the file absolute path using `.slice(appDirectory.length + 1)` [here](https://github.com/remix-run/react-router/blob/698eccf2db61dade6622e6acc1ae06dad5dbd7bb/packages/react-router-fs-routes/flatRoutes.ts#L177),...

Thanks for the quick response @isabelatkinson! That sounds like it would be a great solution for our network configuration.

Our team put together a Prisma ORM version with this fix integrated and it worked perfectly 🚀 Connections from within the Accelerate network are super fast now. Thanks for addressing...

Yeah, applying a decorator is essentially the goal. The `Proxy` approach is what [`@microlabs/otel-cf-workers`](https://www.npmjs.com/package/@microlabs/otel-cf-workers) is currently using for all its instrumentation. It makes it simple to apply the decorator to...

Hey y'all 👋🏻 I noticed this was still open. The fixes for `WorkerEntrypoint` are working great. I think this can be closed now and wanted to check if there was...

We have a common pattern in Prisma where we name DOs based on some value that we also need inside the DO. One such example is our tenant ID which...