Skip to content

Commit

Permalink
removes celerybeat indexer task
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Nowak <[email protected]>
  • Loading branch information
Krzysztof Nowak committed May 3, 2018
1 parent f0481aa commit 0d2eebf
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions asclepias_broker/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,6 @@ def _(x):

#: Scheduled tasks configuration (aka cronjobs).
CELERY_BEAT_SCHEDULE = {
'indexer': {
'task': 'invenio_indexer.tasks.process_bulk_queue',
'schedule': timedelta(minutes=5),
},
'accounts': {
'task': 'invenio_accounts.tasks.clean_session_table',
'schedule': timedelta(minutes=60),
Expand Down
2 changes: 1 addition & 1 deletion asclepias_broker/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
import json

from flask import Blueprint, abort, request
from flask_login import current_user
from flask.views import MethodView
from flask_login import current_user
from invenio_oauth2server import require_api_auth
from jsonschema.exceptions import ValidationError as JSONValidationError
from marshmallow.exceptions import \
Expand Down

0 comments on commit 0d2eebf

Please sign in to comment.