This is an automated email from the ASF dual-hosted git repository.
piotr pushed a commit to branch io_uring_tpc
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/io_uring_tpc by this push:
new 3f1787ca feat(io_uring): fix config provider integration tests and
move tokio from workspace to integration cargo.toml (#2015)
3f1787ca is described below
commit 3f1787ca0dff132d31fefab28c0c19a10bfcdd13
Author: Grzegorz Koszyk <[email protected]>
AuthorDate: Tue Jul 15 21:02:51 2025 +0200
feat(io_uring): fix config provider integration tests and move tokio from
workspace to integration cargo.toml (#2015)
---
core/integration/Cargo.toml | 2 +-
core/integration/tests/config_provider/mod.rs | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/integration/Cargo.toml b/core/integration/Cargo.toml
index 7c241429..bd195275 100644
--- a/core/integration/Cargo.toml
+++ b/core/integration/Cargo.toml
@@ -50,7 +50,7 @@ serial_test = { workspace = true }
server = { workspace = true }
tempfile = { workspace = true }
test-case = { workspace = true }
-tokio = { workspace = true }
+tokio = { version = "1.45.1", features = ["full"] }
compio = { workspace = true }
twox-hash = { workspace = true }
uuid = { workspace = true }
diff --git a/core/integration/tests/config_provider/mod.rs
b/core/integration/tests/config_provider/mod.rs
index 34b79657..3f5a2710 100644
--- a/core/integration/tests/config_provider/mod.rs
+++ b/core/integration/tests/config_provider/mod.rs
@@ -36,7 +36,7 @@ async fn scenario_parsing_from_file(extension: &str) {
);
}
-#[tokio::test]
+#[compio::test]
async fn validate_server_config_toml_from_repository() {
scenario_parsing_from_file("toml").await;
}
@@ -44,7 +44,7 @@ async fn validate_server_config_toml_from_repository() {
// This test needs to be run in serial because it modifies the environment
variables
// which are shared, since all tests run in parallel by default.
#[serial]
-#[tokio::test]
+#[compio::test]
async fn validate_custom_env_provider() {
let expected_datagram_send_buffer_size = "1.00 KB";
let expected_quic_certificate_self_signed = false;