19db3e8350cefa14a282073c6837ef1b5263f309,reframe/frontend/executors/policies.py,AsynchronousExecutionPolicy,_remove_from_running,#AsynchronousExecutionPolicy#Any#,229
Before Change
self.task_listeners.append(self)
def _remove_from_running(self, task):
getlogger().debug(
"removing task from running list: %s" % task.check.info()
)
try:
partname = task.check.current_partition.fullname
self._running_tasks[partname].remove(task)
except (ValueError, AttributeError, KeyError):
After Change
self.task_listeners.append(self)
def _remove_from_running(self, task):
getlogger().debug2(
f"Removing task from the running list: {task.testcase}"
)
try:
partname = task.check.current_partition.fullname
self._running_tasks[partname].remove(task)
except (ValueError, AttributeError, KeyError):
In pattern: SUPERPATTERN
Frequency: 5
Non-data size: 5
Instances
Project Name: eth-cscs/reframe
Commit Name: 19db3e8350cefa14a282073c6837ef1b5263f309
Time: 2020-11-03
Author: karakasis@cscs.ch
File Name: reframe/frontend/executors/policies.py
Class Name: AsynchronousExecutionPolicy
Method Name: _remove_from_running
Project Name: eth-cscs/reframe
Commit Name: 19db3e8350cefa14a282073c6837ef1b5263f309
Time: 2020-11-03
Author: karakasis@cscs.ch
File Name: reframe/frontend/executors/policies.py
Class Name: AsynchronousExecutionPolicy
Method Name: _finalize_all
Project Name: eth-cscs/reframe
Commit Name: 19db3e8350cefa14a282073c6837ef1b5263f309
Time: 2020-11-03
Author: karakasis@cscs.ch
File Name: reframe/frontend/executors/policies.py
Class Name: AsynchronousExecutionPolicy
Method Name: runcase
Project Name: eth-cscs/reframe
Commit Name: 19db3e8350cefa14a282073c6837ef1b5263f309
Time: 2020-11-03
Author: karakasis@cscs.ch
File Name: reframe/frontend/executors/policies.py
Class Name: AsynchronousExecutionPolicy
Method Name: _failall
Project Name: eth-cscs/reframe
Commit Name: 19db3e8350cefa14a282073c6837ef1b5263f309
Time: 2020-11-03
Author: karakasis@cscs.ch
File Name: reframe/frontend/executors/policies.py
Class Name: AsynchronousExecutionPolicy
Method Name: _reschedule_all