We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e6578e commit 734aaa7Copy full SHA for 734aaa7
icechunk/tests/common/mod.rs
@@ -131,5 +131,6 @@ pub(crate) fn make_aws_integration_storage(
131
}
132
133
pub(crate) fn get_random_prefix(base: &str) -> String {
134
- format!("{}_{}", base, Utc::now().timestamp_micros())
+ let suffix: u64 = rand::random();
135
+ format!("{}_{}_{}", base, Utc::now().timestamp_micros(), suffix)
136
0 commit comments