diff --git a/pylint.rc b/pylint.rc index 5ab5a0e20..e25971389 100644 --- a/pylint.rc +++ b/pylint.rc @@ -43,7 +43,6 @@ disable= redefined-outer-name, signature-differs, stop-iteration-return, - subprocess-run-check, super-init-not-called, superfluous-parens, too-many-ancestors, diff --git a/wcs/qommon/spooler.py b/wcs/qommon/spooler.py index cf77db8b0..f0caf9412 100644 --- a/wcs/qommon/spooler.py +++ b/wcs/qommon/spooler.py @@ -31,5 +31,6 @@ def run_after_job(args): args['tenant_dir'].strip('/').split('/')[-1], '--job-id', args['job_id'], - ] + ], + check=False, )