Skip to content

Commit

Permalink
Merge branch '49-skip-checks-support' of github.com:open-contracting/…
Browse files Browse the repository at this point in the history
…pelican-backend into 49-skip-checks-support
  • Loading branch information
yolile committed Nov 30, 2021
2 parents baf789d + 77ce012 commit 9c42fd7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions workers/check/data_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,11 @@ def callback(client_state, channel, method, properties, input_message):
)

# perform actual action with items
processor.do_work(cursor.fetchall(), do_field_level_checks=is_step_required(settings.FIELD_COVERAGE_STEP),
do_resource_level_checks=is_step_required(settings.FIELD_QUALITY_STEP))
processor.do_work(
cursor.fetchall(),
do_field_level_checks=is_step_required(settings.FIELD_COVERAGE_STEP),
do_resource_level_checks=is_step_required(settings.FIELD_QUALITY_STEP),
)

commit()

Expand Down

0 comments on commit 9c42fd7

Please sign in to comment.