Open
Description
Describe the bug
In Rust 1.87 some of the object store tests will fail to compile, due to a change in formatting
out] error: invalid format string: integer `5300000` does not fit into the type `u16` whose range is `0..=65535`
[INFO] [stdout] --> src/integration.rs:1123:45
[INFO] [stdout] |
[INFO] [stdout] 1123 | .put_part(Bytes::from(format!("1:{:05300000},", 0)).into())
[INFO] [stdout] | ^^^^^^^ integer out of range for `u16` in format string
[INFO] [stdout]
To Reproduce
Expected behavior
We should rewrite this test not to use a giant format string
Additional context