Skip to content

Commit

Permalink
Import wiredtiger: 3c55df6f1031d31fb8d382505a3755e7ea2145d6 from bran…
Browse files Browse the repository at this point in the history
…ch mongodb-master

ref: f6b53220bf..3c55df6f10
for: 7.2.0-rc0

WT-10691 Reduce delay in stopping the random cursor thread in test format
  • Loading branch information
ruby-oujo authored and Evergreen Agent committed Oct 9, 2023
1 parent 0e0fe84 commit 7ee79ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/third_party/wiredtiger/import.data
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"vendor": "wiredtiger",
"github": "wiredtiger/wiredtiger.git",
"branch": "mongodb-master",
"commit": "f6b53220bf1ba63e95ff5fd12ab9dc56ec2b6e7a"
"commit": "3c55df6f1031d31fb8d382505a3755e7ea2145d6"
}
2 changes: 1 addition & 1 deletion src/third_party/wiredtiger/test/format/random.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ random_kv(void *arg)
wt_wrap_open_cursor(session, table->uri, config, &cursor);

/* This is just a smoke-test, get some key/value pairs. */
for (i = mmrand(&g.extra_rnd, 0, WT_THOUSAND); i > 0; --i) {
for (i = mmrand(&g.extra_rnd, 0, WT_THOUSAND); i > 0 && !g.workers_finished; --i) {
switch (ret = cursor->next(cursor)) {
case 0:
break;
Expand Down

0 comments on commit 7ee79ef

Please sign in to comment.