summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gorrod <alexander.gorrod@mongodb.com>2017-09-26 14:54:58 +1000
committerAlex Gorrod <alexander.gorrod@mongodb.com>2017-09-26 14:54:58 +1000
commit15aacb8d1301acb926d964c214caf4ab989107a5 (patch)
treeb0210392e0bfe59383c2bb9682345a27da36c4f9
parent4ded5da82e8cb0b2991fdb9c8fa1bb5a9a5865df (diff)
downloadmongo-15aacb8d1301acb926d964c214caf4ab989107a5.tar.gz
WT-3590 Fixup backport to not reference timestamps.
Since timestamp support isn't present in the 3.4 release.
-rw-r--r--src/conn/conn_api.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/conn/conn_api.c b/src/conn/conn_api.c
index 33df2d2d3e7..00d559881dc 100644
--- a/src/conn/conn_api.c
+++ b/src/conn/conn_api.c
@@ -1088,10 +1088,9 @@ err: /*
/*
* Perform a system-wide checkpoint so that all tables are consistent
- * with each other. All transactions are resolved but ignore
- * timestamps to make sure all data gets to disk. Do this before
- * shutting down all the subsystems. We have shut down all user
- * sessions, but send in true for waiting for internal races.
+ * with each other. Do this before shutting down all the subsystems.
+ * We have shut down all user sessions, but send in true for waiting
+ * for internal races.
*/
if (!F_ISSET(conn, WT_CONN_IN_MEMORY | WT_CONN_READONLY)) {
s = NULL;
@@ -1100,7 +1099,6 @@ err: /*
if (s != NULL) {
const char *checkpoint_cfg[] = {
WT_CONFIG_BASE(session, WT_SESSION_checkpoint),
- "use_timestamp=false",
NULL
};
wt_session = &s->iface;