Skip to content

Commit 7132108

Browse files
authored
Merge pull request #151 from jmcauley/fix/firehose-non-exhaustive-match
Fix non-exhaustive pattern match in rsky-firehose binary
2 parents 477e72a + b7adaa2 commit 7132108

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

rsky-firehose/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ async fn process(message: Vec<u8>, client: &reqwest::Client) {
268268
};
269269
}
270270
}
271+
Ok(None) => (),
271272
Err(error) => eprintln!(
272273
"@LOG: Error unwrapping message and header: {}",
273274
error.to_string()

0 commit comments

Comments
 (0)