Lucas Kent
Lucas Kent
pulled out of https://github.com/shotover/shotover-proxy/pull/1728 * sending requests will reset the timeout counter, in the case where the connection has timed out when we send the request there should be no...
I noticed a bug in rack aware routing: https://github.com/shotover/shotover-proxy/blob/4c146b8373f8a29896d118defeca1c90f4657f02/shotover/src/transforms/kafka/sink_cluster/mod.rs#L949-L952 This code path adds a node with no rack and there is no way to override that None rack later on....
closes https://github.com/tychedelia/kafka-protocol-rs/issues/114 closes https://github.com/tychedelia/kafka-protocol-rs/issues/54 - All raft/zk specific messages are removed in 4.0 kafka 4.0 removes a few versions/message types. This results in a few complications. ## 1. The `fields`...
I know there has already been a lot of discussion on this, so my apologies for bringing it up again, but rust 2024 will change the original context this decision...
**Describe the bug** Put this code in the eframe template: ```rust ui.horizontal_wrapped(|ui| { for i in 0..10 { ui.vertical(|ui| { ui.label(format!("{}", i)); ui.label("foo"); ui.label(format!("{} more", i)); }); } }); ```...
* No changes to functionality. * Simplifies check for android. * Simplifies path handling.
This PR is a continuation of https://github.com/astonbitecode/j4rs/pull/117 Now that all the automatically `--fix`able lints are resolved, in this PR I manually fixed a bunch of lints. I've left a few...
From my reading of [from_raw_fd](https://doc.rust-lang.org/std/os/fd/struct.OwnedFd.html#method.from_raw_fd) and the [IO safety rules](https://doc.rust-lang.org/std/io/index.html#io-safety) we should be able to change [UnixSeqPacketConn::recv_fds](https://docs.rs/uds/latest/uds/struct.UnixSeqpacketConn.html#method.recv_fds) to return an [OwnedFd](https://doc.rust-lang.org/std/os/fd/struct.OwnedFd.html) instead of [RawFd](https://doc.rust-lang.org/std/os/fd/type.RawFd.html). The IO safety rules specifically calls...
https://doc.rust-lang.org/std/sync/struct.OnceLock.html was introduced in rust 1.70.0 which falls within this projects MSRV of 1.70.0 (according to the github actions config) As such we can just replace the usage of OnceCell...
I've tested these changes on my fork repo and all workflows pass. The changes: * windows 2019 is no longer supported by github actions, so it is removed from our...