Skip to content

Commit

Permalink
Fix super call in JobMonitorCompute4PUNCH
Browse files Browse the repository at this point in the history
  • Loading branch information
giffels committed Feb 16, 2024
1 parent 7796a57 commit dc0fc33
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions reana_job_controller/job_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,7 @@ class JobMonitorCompute4PUNCH(JobMonitor):
def __init__(self, **kwargs):
"""Initialize Compute4PUNCH job monitor thread."""
self.job_manager_cls = COMPUTE_BACKENDS["compute4punch"]()
super(JobMonitorCompute4PUNCH, self).__init__(
thread_name="compute4punch_job_monitor"
)
super(__class__, self).__init__(thread_name="compute4punch_job_monitor")

def watch_jobs(self, job_db, app=None):
"""
Expand Down

0 comments on commit dc0fc33

Please sign in to comment.