Upgrade tokio to 1.22.0 (#6262)

Co-authored-by: Sebastian Kunert <skunert49@gmail.com>
This commit is contained in:
Dmitry Markin
2022-12-05 13:15:06 +03:00
committed by GitHub
parent 8bf11e1d05
commit f2f5345ac2
14 changed files with 265 additions and 243 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ impl Jaeger {
"jaeger-collector",
Some("jaeger"),
Box::pin(async move {
match async_std::net::UdpSocket::bind("0.0.0.0:0").await {
match tokio::net::UdpSocket::bind("0.0.0.0:0").await {
Ok(udp_socket) => loop {
let buf = traces_out.next().await;
// UDP sending errors happen only either if the API is misused or in case of missing privilege.