Christopher Hunt

Results 109 comments of Christopher Hunt

I’m no longer at Typesafe/Lightbend, but I’m happy to help out.

Hey @ilya-epifanov - would you be able to grant @longshorej access to this repo as he has taken over my responsibilities at Lightbend. I don’t appear able to grant him...

A quick experiment yielded the following having terminated the server end: ``` request or response body error: error reading a body from connection: unexpected EOF during chunk size line ```...

It has become clear to me now that one does not `es.close()` given a streaming error. Instead, the event source will retry. I think the example would benefit from avoiding...

Happy to provide a PR on the example if there is agreement.

Thanks @mefellows ! I’ll try and get a PR in!

Thanks for the code snippet. Before I dive in further, are there any complete examples of integrating ratchet with axum?

The API indeed appears to be improved. Here's the rough equivalent of @nakedible-p 's code snippet (for convenience, I just pass in all of the headers, and I don't have...

Thanks for the fabulous guidance here. I've been able to get things integrated into Axum nicely. Here's the code I've landed on - I hope that it helps someone else:...

> Response in ratchet needs to use `()` because it isn't linked with any certain framework. To translate it to axum, just say: > > ```rust > response.map(|_| axum::body::Body::empty()); >...