Skip to content

Commit

Permalink
fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Harring committed Mar 14, 2022
1 parent 275bad5 commit a2973db
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/dataflow/src/source/kafka.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,6 @@ pub struct KafkaSourceReader {
partition_metrics: KafkaPartitionMetrics,
}

struct UnparkOnDrop<T>(JoinHandle<T>);

impl<T> Drop for UnparkOnDrop<T> {
fn drop(&mut self) {
self.0.thread().unpark();
}
}

impl SourceReader for KafkaSourceReader {
type Key = Option<Vec<u8>>;
type Value = Option<Vec<u8>>;
Expand Down

0 comments on commit a2973db

Please sign in to comment.