summaryrefslogtreecommitdiff
path: root/src/btree/bt_split.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/btree/bt_split.c')
-rw-r--r--src/btree/bt_split.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/btree/bt_split.c b/src/btree/bt_split.c
index 8005e4b3b41..2862c7fb6d7 100644
--- a/src/btree/bt_split.c
+++ b/src/btree/bt_split.c
@@ -32,9 +32,8 @@ typedef enum {
/*
* __page_split_timing_stress --
- * Optionally add delay to simulate the race conditions in
- * page split for debug purposes. The purpose is to uncover
- * the race conditions in page split.
+ * Optionally add delay to simulate the race conditions in page split for
+ * debug purposes. The purpose is to uncover the race conditions in page split.
*/
static void
__page_split_timing_stress(WT_SESSION_IMPL *session,
@@ -47,7 +46,6 @@ __page_split_timing_stress(WT_SESSION_IMPL *session,
/* We only want to sleep when page split race flag is set. */
if (FLD_ISSET(conn->timing_stress_flags, flag))
__wt_sleep(0, micro_seconds);
-
}
/*