summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/cppsuite/test_harness/timestamp_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/cppsuite/test_harness/timestamp_manager.h')
-rw-r--r--src/third_party/wiredtiger/test/cppsuite/test_harness/timestamp_manager.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/test/cppsuite/test_harness/timestamp_manager.h b/src/third_party/wiredtiger/test/cppsuite/test_harness/timestamp_manager.h
index 0a72eadc9cf..726330d6ef0 100644
--- a/src/third_party/wiredtiger/test/cppsuite/test_harness/timestamp_manager.h
+++ b/src/third_party/wiredtiger/test/cppsuite/test_harness/timestamp_manager.h
@@ -54,12 +54,10 @@ class timestamp_manager : public component {
void
load()
{
- testutil_assert(_config != nullptr);
- testutil_check(_config->get_int(OLDEST_LAG, _oldest_lag));
+ _oldest_lag = _config->get_int(OLDEST_LAG);
testutil_assert(_oldest_lag >= 0);
- testutil_check(_config->get_int(STABLE_LAG, _stable_lag));
+ _stable_lag = _config->get_int(STABLE_LAG);
testutil_assert(_stable_lag >= 0);
- testutil_check(_config->get_bool(ENABLED, _enabled));
component::load();
}