diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2014-08-11 14:38:40 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2014-08-11 14:38:40 +1000 |
commit | 212631c1e5fd9fb01938ceed16fc9ad7402014b3 (patch) | |
tree | 27bf5fa700d4e7f5ea8cfcd4bdbda0a12b0dd8f5 /examples/c/ex_all.c | |
parent | 23f3141eb5f561ac315b7474e7236b4124f66bb3 (diff) | |
download | mongo-212631c1e5fd9fb01938ceed16fc9ad7402014b3.tar.gz |
Change ex_all.c to match grouping of eviction settings.
Diffstat (limited to 'examples/c/ex_all.c')
-rw-r--r-- | examples/c/ex_all.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/c/ex_all.c b/examples/c/ex_all.c index d3cd9a2425d..04ef32a8edb 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_thread_max=4", &conn); + "create,eviction_trigger=90,eviction(threads_max=4)", &conn); /*! [Eviction worker configuration] */ if (ret == 0) (void)conn->close(conn, NULL); |