cleanup stream polls (#3397)

* metered-channel: remove dead code

* we don't need no fuse

* even more
This commit is contained in:
Andronik Ordian
2021-07-02 10:23:26 +02:00
committed by GitHub
parent 505145efd3
commit 7b054b3c77
5 changed files with 17 additions and 65 deletions
+1 -1
View File
@@ -191,7 +191,7 @@ impl ProvisioningJob {
};
loop {
futures::select! {
msg = self.receiver.next().fuse() => match msg {
msg = self.receiver.next() => match msg {
Some(RequestInherentData(_, return_sender)) => {
let _span = span.child("req-inherent-data");
let _timer = self.metrics.time_request_inherent_data();