Skip to content

Commit

Permalink
Fix normalizer filtering on tasks endpoint (#2414)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbruinsslot authored and dekkers committed Feb 1, 2024
1 parent 5edf737 commit bdf2e34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mula/scheduler/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def list_tasks(
elif task_type == "normalizer":
f_plugin = storage.filters.Filter(
column="p_item",
field="data__raw_data__boefje_meta__id",
field="data__normalizer__id",
operator="eq",
value=plugin_id,
)
Expand All @@ -375,7 +375,7 @@ def list_tasks(
),
storage.filters.Filter(
column="p_item",
field="data__raw_data__boefje_meta__id",
field="data__normalizer__id",
operator="eq",
value=plugin_id,
),
Expand Down

0 comments on commit bdf2e34

Please sign in to comment.