Make sure errors get logged (#6451)

instead of silently dropped.

Co-authored-by: eskimor <eskimor@no-such-url.com>
This commit is contained in:
eskimor
2022-12-16 21:37:57 +01:00
committed by GitHub
parent 3c1a28276d
commit 5c787f1512
3 changed files with 18 additions and 10 deletions
+2 -2
View File
@@ -1112,8 +1112,8 @@ where
pin_mut!(forward);
select! {
_ = forward => (),
_ = overseer_fut => (),
() = forward => (),
() = overseer_fut => (),
complete => (),
}
}),