summaryrefslogtreecommitdiff
path: root/dist/stat.py
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2013-04-30 22:28:25 -0400
committerKeith Bostic <keith@wiredtiger.com>2013-04-30 22:28:25 -0400
commitba473432830e08a70819891afcbe2396c0fe60a6 (patch)
tree4918916b1f31b75277e6019287631a16c8abb556 /dist/stat.py
parent1d06cf1d057df0c957d303f434be80ec2b35fb3c (diff)
downloadmongo-ba473432830e08a70819891afcbe2396c0fe60a6.tar.gz
Reverse the sense of the "scale" option, make it "no_scale" instead
(there are 100+ entries that scale, roughly 30 that don't).
Diffstat (limited to 'dist/stat.py')
-rw-r--r--dist/stat.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/dist/stat.py b/dist/stat.py
index 3c337a3d956..3c4be936aed 100644
--- a/dist/stat.py
+++ b/dist/stat.py
@@ -153,12 +153,12 @@ compare_srcfile(tmp_file, '../src/support/stat.c')
# Update the statlog file with the entries we can scale per second.
-scale_info = 'scale_per_second_list = [\n'
+scale_info = 'no_scale_per_second_list = [\n'
for l in sorted(connection_stats):
- if 'scale' in l.flags:
+ if 'no_scale' in l.flags:
scale_info += ' \'' + l.desc + '\',\n'
for l in sorted(dsrc_stats):
- if 'scale' in l.flags:
+ if 'no_scale' in l.flags:
scale_info += ' \'' + l.desc + '\',\n'
scale_info += ']\n'
@@ -167,12 +167,12 @@ tfile = open(tmp_file, 'w')
skip = 0
for line in open('../tools/statlog.py', 'r'):
if skip:
- if line.count('scale-per-second list section: END'):
+ if line.count('no scale-per-second list section: END'):
tfile.write(line)
skip = 0
else:
tfile.write(line)
- if line.count('scale-per-second list section: BEGIN'):
+ if line.count('no scale-per-second list section: BEGIN'):
skip = 1
tfile.write(scale_info)
tfile.close()