Red Kalab

Results 5 comments of Red Kalab

> Are there ways in which the proto3 JSON mapping differs from what serde can do? Found one, protobuf `bytes` type maps to a base64 encoded string. I copied a...

I was following the steps shown in the fastapi section https://github.com/prometheus/client_python/#fastapi--gunicorn which uses `make_asgi_app`

Looking at your code snippet, why sqlx operations are async, and the `handle` function should also be async, not sure what the goal of adding `block_on` and async again is....

Would it make sense to make a `send_local()` function that takes `Message` and would error out if its a `RemoteActorRef`? Then you could require `RemoteMessage` on `send()`. This would only...

Actually, I realized this is not actually great, since the handle method needs to be implemented as well, which kind of breaks it. Not sure how about fixing that