aboutsummaryrefslogtreecommitdiff
path: root/src/benchmarks/mysql.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/mysql.py')
-rw-r--r--src/benchmarks/mysql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmarks/mysql.py b/src/benchmarks/mysql.py
index e71038f..49e0581 100644
--- a/src/benchmarks/mysql.py
+++ b/src/benchmarks/mysql.py
@@ -137,7 +137,7 @@ class BenchmarkMYSQL(Benchmark):
result["avg"] = re.search("avg:\\s*(\\d*.\\d*)", stdout).group(1)
result["max"] = re.search("max:\\s*(\\d*.\\d*)", stdout).group(1)
- with open("/proc/"+str(self.servers[0].pid)+"/status", "r") as f:
+ with open("/proc/"+str(self.servers[0]["popen"].pid)+"/status", "r") as f:
for l in f.readlines():
if l.startswith("VmHWM:"):
result["rssmax"] = int(l.replace("VmHWM:", "").strip().split()[0])