Kamal Fariz Mahyuddin
Kamal Fariz Mahyuddin
The panic happened when trying to call ``` OSO.authorized_query(user, "read", DeliveryArea) ``` The rule that caused it to panic was ``` has_relation(location: Location, "parent", delivery_area: DeliveryArea) if not delivery_area.location_id =...
@gabrieleds I ended up writing a proxy with node-http-proxy and running it with hotel alongside the other apps. The proxy itself looks something like this: ```javascript const rules = [...
Maybe simplest thing we can do is to detect the spread operator and call ``` javascript Ember.computed.apply(Ember, KEYS.concat([function(){}]) ```
What makes it slightly tricky is if you support multiple keys, for example, `id` and `email`. Some references will have `{ "_typename": "User", "id": 123 }` while others might have...
I'd prefer it to transform it in place, so ``` javascript const str = Ember.String.fmt("a @2 b @1 c @ d", a, b, c); ``` into ``` javascript const str...
On that token, it would be nice to support when running `serverless invoke local` too
@ioquatix sure I can whip up a PR. I wasn't sure if my conclusions were correct though.
I'm seeing this issue in my project too. This usually happens in multi-step tool calling scenarios. When I inspect the `cf_ai_chat_agent_messages` table, the only row I see was my initial...
No particularly reason except to make it transparent to the MCP sdk. I am not so sure about being able to bypass auth. My MCP server is very dependent on...
hi @mattzcarey, in my debugging, I found several spots where the MCP sdk does not close the connection, for example, when [performing auto discovery of the oauth endpoints](https://github.com/modelcontextprotocol/typescript-sdk/blob/59cb50463abd948710924028c64526ab1929c37f/src/client/auth.ts#L511-L513) where it...