Remove explicit setting of the task base class

since it's now the default base class in swh-scheduler (>= 0.0.39)
This commit is contained in:
David Douard 2019-01-10 09:55:17 +01:00
parent 6030cb6315
commit f46f3e2015
6 changed files with 19 additions and 25 deletions

View file

@ -6,7 +6,6 @@ from datetime import datetime
from contextlib import contextmanager
from swh.scheduler.celery_backend.config import app
from swh.scheduler.task import SWHTask
from swh.lister.npm.lister import NpmLister, NpmIncrementalLister
from swh.lister.npm.models import NpmVisitModel
@ -42,7 +41,7 @@ def get_last_update_seq(lister):
@app.task(name='swh.lister.npm.tasks.NpmListerTask',
base=SWHTask, bind=True)
bind=True)
def npm_lister(self, **lister_args):
self.log.debug('%s, lister_args=%s' % (
self.name, lister_args))
@ -53,7 +52,7 @@ def npm_lister(self, **lister_args):
@app.task(name='swh.lister.npm.tasks.NpmIncrementalListerTask',
base=SWHTask, bind=True)
bind=True)
def npm_incremental_lister(self, **lister_args):
self.log.debug('%s, lister_args=%s' % (
self.name, lister_args))
@ -65,7 +64,7 @@ def npm_incremental_lister(self, **lister_args):
@app.task(name='swh.lister.npm.tasks.ping',
base=SWHTask, bind=True)
bind=True)
def ping(self):
self.log.debug(self.name)
return 'OK'