From 0d226e7032399e94f8bdeac84c55333209f0a558 Mon Sep 17 00:00:00 2001 From: John Kacur Date: Tue, 14 Sep 2021 14:56:42 -0400 Subject: [PATCH 03/11] rteval: Remove self.__err_sleep commit 5ed68ae77ec05786aab99fbed35d0347a5d25997 changed the code to exit gracefully if hackbench failed from memory errors. No attempt is made anymore to wait to see if memory pressures ease. The variable __err_sleep however was not removed at the time. Remove it now, as it is now longer used. Signed-off-by: John Kacur --- rteval/modules/loads/hackbench.py | 1 - 1 file changed, 1 deletion(-) diff --git a/rteval/modules/loads/hackbench.py b/rteval/modules/loads/hackbench.py index 8119d50f626a..2fb90c1946a5 100644 --- a/rteval/modules/loads/hackbench.py +++ b/rteval/modules/loads/hackbench.py @@ -97,7 +97,6 @@ class Hackbench(CommandLineLoad): '-l', str(self._cfg.setdefault('loops', '1000')), '-s', str(self._cfg.setdefault('datasize', '1000')) ] - self.__err_sleep = 5.0 def _WorkloadBuild(self): # Nothing to build, so we're basically ready -- 2.31.1