diff --git a/glommio/Cargo.toml b/glommio/Cargo.toml index 7cd675af3..70e8ff564 100755 --- a/glommio/Cargo.toml +++ b/glommio/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "glommio" -version = "0.6.0" +version = "0.7.0" authors = [ "Glauber Costa ", "Hippolyte Barraud ", "DataDog " ] edition = "2018" -description = "Glommio is a thread-per-core framework that aims to make the task of writing highly parallel asynchronous applications in a thread-per-core architecture easier for rustaceans" +description = "Glommio is a thread-per-core crate that makes writing highly parallel asynchronous applications in a thread-per-core architecture easier for rustaceans." license = "Apache-2.0 OR MIT" repository = "https://github.com/DataDog/glommio" homepage = "https://github.com/DataDog/glommio" @@ -17,7 +17,7 @@ readme = "../README.md" [dependencies] ahash = "0.7" -backtrace = { version = "~0.3.58" } +backtrace = { version = "0.3" } bitflags = "1.3" bitmaps = "3.1" buddy-alloc = "0.4" diff --git a/glommio/src/sys/uring.rs b/glommio/src/sys/uring.rs index f2e2eb177..d080c09e8 100644 --- a/glommio/src/sys/uring.rs +++ b/glommio/src/sys/uring.rs @@ -1891,7 +1891,7 @@ impl Reactor { if let Some(preempt) = preempt_timer() { self.latency_preemption_timeout_src .set(Some(lat_ring.prepare_latency_preemption_timer(preempt))); - assert!(flush_rings!(lat_ring, main_ring)? > 0); + flush_rings!(lat_ring, main_ring)?; } // A Note about `need_preempt`: