summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2014-08-11 14:46:37 +1000
committerMichael Cahill <michael.cahill@wiredtiger.com>2014-08-11 14:46:37 +1000
commite1cba5463d0e9e78d059f6a19f50ea04d9536c63 (patch)
tree193bc7462f79e140d75396e56d725c06cd89e82e /examples
parent212631c1e5fd9fb01938ceed16fc9ad7402014b3 (diff)
downloadmongo-e1cba5463d0e9e78d059f6a19f50ea04d9536c63.tar.gz
Engage brain: applications have to use <group>=(<key>) syntax for nested configs.
Diffstat (limited to 'examples')
-rw-r--r--examples/c/ex_all.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/c/ex_all.c b/examples/c/ex_all.c
index 04ef32a8edb..278c8bb8750 100644
--- a/examples/c/ex_all.c
+++ b/examples/c/ex_all.c
@@ -1021,7 +1021,7 @@ main(void)
/*! [Eviction worker configuration] */
/* Configure up to four eviction threads */
ret = wiredtiger_open(home, NULL,
- "create,eviction_trigger=90,eviction(threads_max=4)", &conn);
+ "create,eviction_trigger=90,eviction=(threads_max=4)", &conn);
/*! [Eviction worker configuration] */
if (ret == 0)
(void)conn->close(conn, NULL);