summaryrefslogtreecommitdiff
path: root/src/third_party
diff options
context:
space:
mode:
authorEtienne Petrel <etienne.petrel@mongodb.com>2021-11-23 03:48:06 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-11-23 04:34:41 +0000
commitcb71664d7fc7a99cf23ae109455ae86a04f80e58 (patch)
treead628e2f0c825ce58b6b3e9109b04abbf068711b /src/third_party
parent13ae578669ad21ef7e9baea6d3082f32c3a7fd90 (diff)
downloadmongo-cb71664d7fc7a99cf23ae109455ae86a04f80e58.tar.gz
Import wiredtiger: 3802cc7833b000ecb015119a235f6cb5e75f20a6 from branch mongodb-master
ref: ab8f444cf4..3802cc7833 for: 5.2.0 WT-8430 Add sleep back in to allow thread to run for testing on slower systems in test_tiered04
Diffstat (limited to 'src/third_party')
-rw-r--r--src/third_party/wiredtiger/import.data2
-rwxr-xr-xsrc/third_party/wiredtiger/test/suite/test_tiered04.py4
2 files changed, 4 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/import.data b/src/third_party/wiredtiger/import.data
index e6f63227514..e95777bc5f4 100644
--- a/src/third_party/wiredtiger/import.data
+++ b/src/third_party/wiredtiger/import.data
@@ -2,5 +2,5 @@
"vendor": "wiredtiger",
"github": "wiredtiger/wiredtiger.git",
"branch": "mongodb-master",
- "commit": "ab8f444cf493a7133e85cbee1a5847c410770bcd"
+ "commit": "3802cc7833b000ecb015119a235f6cb5e75f20a6"
}
diff --git a/src/third_party/wiredtiger/test/suite/test_tiered04.py b/src/third_party/wiredtiger/test/suite/test_tiered04.py
index 0e65bf1957a..9e4a425731d 100755
--- a/src/third_party/wiredtiger/test/suite/test_tiered04.py
+++ b/src/third_party/wiredtiger/test/suite/test_tiered04.py
@@ -161,7 +161,9 @@ class test_tiered04(wttest.WiredTigerTestCase):
# the internal thread to process the work units.
self.session.flush_tier('force=true')
flush += 1
- #time.sleep(1)
+ # We still sleep to give the internal thread a chance to run. Some slower
+ # systems can fail here if we don't give them time.
+ time.sleep(1)
self.pr("Check removal of ")
self.pr(self.obj1file)
self.assertFalse(os.path.exists(self.obj1file))