Skip to content

Commit

Permalink
Merge pull request #56 from Blockdaemon/dependabot/cargo/rdkafka-0.29
Browse files Browse the repository at this point in the history
Update rdkafka requirement from 0.28 to 0.29
  • Loading branch information
nyetwurk authored Feb 24, 2023
2 parents ed226c9 + bed15c0 commit 67a328f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
prost = "0.11"
rdkafka = { version = "0.28", features = ["ssl-vendored", "sasl"] }
rdkafka = { version = "0.29", features = ["ssl-vendored", "sasl"] }
solana-geyser-plugin-interface = { version = "=1.11.3" }
solana-logger = { version = "=1.11.3" }
solana-program = { version = "=1.11.3" }
Expand Down
2 changes: 1 addition & 1 deletion src/publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ impl Publisher {

impl Drop for Publisher {
fn drop(&mut self) {
self.producer.flush(self.shutdown_timeout);
let _ = self.producer.flush(self.shutdown_timeout);
}
}

0 comments on commit 67a328f

Please sign in to comment.