Skip to content

Commit

Permalink
Added a flag to deactivate checking of the updated<processed timestam…
Browse files Browse the repository at this point in the history
…p (2)
  • Loading branch information
romanchyla committed Dec 6, 2017
1 parent d884cf6 commit b1bbcb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,5 +279,5 @@ def reindex(since=None, batch_size=None, force_indexing=False, update_solr=True,
elif args.reindex:
update_solr = 's' in args.reindex.lower()
update_metrics = 'm' in args.reindex.lower()
reindex(since=args.since, batch_size=args.batch_size, force=args.force_indexing,
update_solr=update_solr, update_metrics=update_metrics)
reindex(since=args.since, batch_size=args.batch_size, force_indexing=args.force_indexing,
update_solr=update_solr, update_metrics=update_metrics, force_processing=args.force_processing)

0 comments on commit b1bbcb2

Please sign in to comment.