Skip to content

Commit f08baf4

Browse files
author
prajwal.kirankumar
committed
Fix unmarshal issues with cbindexperf
Change-Id: Ib51e8cd9a1b6f06dc9be1a76e84b6b83ed52a9bd Reviewed-on: http://review.couchbase.org/c/perfrunner/+/146567 Tested-by: Build Bot <build@couchbase.com> Reviewed-by: Jyotsna <jyotsna.nayak@couchbase.com>
1 parent 4802537 commit f08baf4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

perfrunner/settings.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1066,10 +1066,10 @@ def __init__(self, options: dict):
10661066

10671067
self.cbindexperf_configfile = options.get('cbindexperf_configfile',
10681068
self.CBINDEXPERF_CONFIGFILE)
1069-
self.cbindexperf_concurrency = options.get('cbindexperf_concurrency',
1070-
self.CBINDEXPERF_CONCURRENCY)
1071-
self.cbindexperf_repeat = options.get('cbindexperf_repeat',
1072-
self.CBINDEXPERF_REPEAT)
1069+
self.cbindexperf_concurrency = int(options.get('cbindexperf_concurrency',
1070+
self.CBINDEXPERF_CONCURRENCY))
1071+
self.cbindexperf_repeat = int(options.get('cbindexperf_repeat',
1072+
self.CBINDEXPERF_REPEAT))
10731073
self.cbindexperf_configfiles = options.get('cbindexperf_configfiles',
10741074
self.CBINDEXPERF_CONFIGFILES)
10751075
self.run_recovery_test = int(options.get('run_recovery_test',

0 commit comments

Comments
 (0)