Message ID | 20210915121432.5472-3-jkacur@redhat.com |
---|---|
State | New |
Headers | show |
Series | rteval: Remove self.__err_sleep | expand |
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
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 <jkacur@redhat.com> --- rteval/modules/loads/hackbench.py | 1 - 1 file changed, 1 deletion(-)