summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gorrod <alexg@wiredtiger.com>2014-03-04 15:56:05 +1100
committerAlex Gorrod <alexg@wiredtiger.com>2014-03-04 15:56:05 +1100
commit327ba5bbbd80410eea320cdeaa944c549aec8a43 (patch)
tree5f701da6e08feb1a5b5bcd74484079720a33d450
parentdad7e9928d2536700788247e6452b760ac40599d (diff)
downloadmongo-327ba5bbbd80410eea320cdeaa944c549aec8a43.tar.gz
Fix wtperf make check, and versions in upgrading documentation.
-rwxr-xr-xbench/wtperf/smoke.sh2
-rw-r--r--src/docs/upgrading.dox15
2 files changed, 9 insertions, 8 deletions
diff --git a/bench/wtperf/smoke.sh b/bench/wtperf/smoke.sh
index d6eaed1fc50..062277d90dc 100755
--- a/bench/wtperf/smoke.sh
+++ b/bench/wtperf/smoke.sh
@@ -1,4 +1,4 @@
#! /bin/sh
# Smoke-test wtperf as part of running "make check".
-./wtperf -O ../../../bench/wtperf/runners/small-lsm.wtperf -o "run_time=20"
+./wtperf -O `dirname $0`/runners/small-lsm.wtperf -o "run_time=20"
diff --git a/src/docs/upgrading.dox b/src/docs/upgrading.dox
index e67d3298d88..3cb0b96b0ef 100644
--- a/src/docs/upgrading.dox
+++ b/src/docs/upgrading.dox
@@ -1,16 +1,17 @@
/*! @page upgrading Upgrading WiredTiger applications
-@section version_22 Upgrading to Version 2.2
+@section version_211 Upgrading to Version 2.1.1
<dl>
<dt>WT_EXTENSION_API::config methods</dt>
<dd>
-In the 2.2 release of WiredTiger the configuration string parsing API has been
-changed and added to a new public handle. The WT_EXTENSION_API::config_strget,
-WT_EXTENSION_API::config_scan_begin, WT_EXTENSION_API::config_scan_next and
-WT_EXTENSION_API::config_scan_end have been removed. They have been replaced
-by a WT_EXTENSION_API::config_parser_open method, which can be used to
-parse configuration strings. See the WT_CONFIG_PARSER documentation for
+In the 2.1.1 release of WiredTiger the configuration string parsing API
+has been changed and added to a new public handle. The
+WT_EXTENSION_API::config_strget, WT_EXTENSION_API::config_scan_begin,
+WT_EXTENSION_API::config_scan_next and WT_EXTENSION_API::config_scan_end
+have been removed. They have been replaced by a
+WT_EXTENSION_API::config_parser_open method, which can be used to parse
+configuration strings. See the WT_CONFIG_PARSER documentation for
examples on how to use the updated API.
</dd>