This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new 7ebce1bb9 fix(integration): prevent flaky connector sink tests from
f64 round-trip mismatch (#2838)
7ebce1bb9 is described below
commit 7ebce1bb94743da4c08a3edf1f8092a457df2829
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Sun Mar 1 10:02:05 2026 +0100
fix(integration): prevent flaky connector sink tests from f64 round-trip
mismatch (#2838)
---
core/integration/tests/connectors/mod.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/integration/tests/connectors/mod.rs
b/core/integration/tests/connectors/mod.rs
index b1bad2360..a85453d52 100644
--- a/core/integration/tests/connectors/mod.rs
+++ b/core/integration/tests/connectors/mod.rs
@@ -49,7 +49,7 @@ pub fn create_test_messages(count: usize) -> Vec<TestMessage>
{
id: i as u64,
name: format!("user_{}", i - 1),
count: ((i - 1) * 10) as u32,
- amount: (i - 1) as f64 * 99.99,
+ amount: (i - 1) as f64 * 100.0,
active: (i - 1) % 2 == 0,
timestamp: (base_timestamp + (i - 1) as u64 * ONE_DAY_MICROS) as
i64,
})