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 54768b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reana_job_controller/job_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,8 +487,8 @@ 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", **kwargs
)

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

0 comments on commit 54768b0

Please sign in to comment.