Skip to content

Commit

Permalink
fix: Pipeline calls step.process_resource() instead of ._process_reso…
Browse files Browse the repository at this point in the history
…urce() because otherwise the call to .check_resource() is skipped
  • Loading branch information
johentsch committed Dec 6, 2023
1 parent 73e42eb commit 024bf65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dimcat/steps/pipelines/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _process_resource(
for step in pipeline_steps:
previous_resource = processed_resource
try:
processed_resource = step._process_resource(previous_resource)
processed_resource = step.process_resource(previous_resource)
except Exception as e:
if ignore_exceptions:
self.logger.info(
Expand Down

0 comments on commit 024bf65

Please sign in to comment.