Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

revert rdkafka to 0.34 to evaluate impact #68

Merged
merged 4 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:

test:
runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 10

steps:
- uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ uuid = { version = "1.3.3", features = ["serde"] }
async-trait = "0.1.68"
serde_urlencoded = "0.7.1"
rand = "0.8.5"
rdkafka = { version = "0.36.0", features = ["cmake-build", "ssl"] }
rdkafka = { version = "0.34.0", features = ["cmake-build", "ssl"] }
metrics = "0.21.1"
metrics-exporter-prometheus = "0.12.1"
thiserror = "1.0.48"
Expand Down
1 change: 1 addition & 0 deletions capture-server/tests/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ impl EphemeralTopic {
impl Drop for EphemeralTopic {
fn drop(&mut self) {
debug!("dropping EphemeralTopic {}...", self.topic_name);
_ = self.consumer.unassign();
self.consumer.unsubscribe();
match futures::executor::block_on(timeout(
Duration::from_secs(10),
Expand Down