This is an automated email from the ASF dual-hosted git repository.
tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 1b8268093 Increase upper wait time (#2142)
1b8268093 is described below
commit 1b8268093699ab8ba8661d6f90d018fb734e9538
Author: Liang-Chi Hsieh <[email protected]>
AuthorDate: Sat Jul 23 06:01:54 2022 -0700
Increase upper wait time (#2142)
---
object_store/src/throttle.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/object_store/src/throttle.rs b/object_store/src/throttle.rs
index 7a54a06c9..e91d55a5e 100644
--- a/object_store/src/throttle.rs
+++ b/object_store/src/throttle.rs
@@ -275,7 +275,7 @@ mod tests {
macro_rules! assert_bounds {
($d:expr, $lower:expr) => {
- assert_bounds!($d, $lower, $lower + 1);
+ assert_bounds!($d, $lower, $lower + 2);
};
($d:expr, $lower:expr, $upper:expr) => {
let d = $d;