Lucas Kent
Lucas Kent
Once https://github.com/vulkano-rs/vulkano/pull/947 is merged then, there a bunch of work I want to do on the vulkano-shaders/vulkano-shader-derive crates, in terms of updating dependencies and cleaning things up. So figured I...
I am using j4rs to test the java kafka driver against my application. I have the following code: ```rust use j4rs::{InvocationArg, Jvm, JvmBuilder, MavenArtifact}; fn main() { let jvm: Jvm...
This fixes all of the clippy errors on the repo, there are still 258 clippy warnings left, but the errors represent more serious issues so I sought to resolve them...
I have an issue reported to winit_input_helper: https://github.com/rukai/winit_input_helper/issues/55 In this issue a user observes events occurring like: ``` event: NewEvents(Poll) event: AboutToWait event: WindowEvent { window_id: WindowId(WindowId(11996930)), event: CloseRequested }...
This PR improves SinkConnection to be more robust and efficient. https://github.com/shotover/shotover-proxy/pull/1565 started on this work but I didnt realize how deep the issue went. 1. First I realized that the...
Currently CassandraSinkCluster rewrite logic relies on the responses arriving in order but https://github.com/shotover/shotover-proxy/pull/1567 will change them to be out of order. This PR fixes the rewrite logic so it no...
Pulled out of https://github.com/shotover/shotover-proxy/pull/1553 Changes to CassandraSinkCluster in this PR: * CassandraConnection is deleted, in its place a new CassandraConnection type is created that is just a thin layer over...
After rebasing, the changes to CassandraSinkCluster in this PR will be: * use try_recv instead of awaiting on recv. - this gives us the benchmark improvement shown below * when...
I started on this, but I now think we are better off adding the `pending_response_tx/rx` channel in a prereq and then entirely removing the `pushed_messages_tx/rx` channel in this PR.
Since the move to message id invariants this no longer works as expected: https://github.com/shotover/shotover-proxy/blob/58ed58e02ca067407d7c1247b11230444f6c7f41/shotover/src/server.rs#L750-L769 We should investigate what the best way forward is here.