Commit 0b250012 authored by Spiros Koulouzis's avatar Spiros Koulouzis

fixed parse error

parent 8f3673ea
......@@ -368,11 +368,11 @@ public class DeployService {
}
private Double getAvgExecTimePerThread(String string) {
return Double.valueOf(string.replaceAll("execution time \\(avg/stddev\\):", "").replaceAll("s", "").trim().split("/")[0]);
return Double.valueOf(string.replaceAll("execution time \\(avg/stddev\\):", "").trim().split("/")[0]);
}
private Double getStddevExecTimePerThread(String string) {
return Double.valueOf(string.replaceAll("execution time \\(avg/stddev\\):", "").replaceAll("s", "").trim().split("/")[0]);
return Double.valueOf(string.replaceAll("execution time \\(avg/stddev\\):", "").trim().split("/")[0]);
}
private double getMinExecutionTimePerRequest(String string) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment