Skip to content

Commit

Permalink
Set monitor to None in filter tasks API
Browse files Browse the repository at this point in the history
  • Loading branch information
talsperre committed Jan 14, 2025
1 parent f354e6b commit b1fdc7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaflow/plugins/metadata_providers/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def filter_tasks_by_metadata(
}
url = ServiceMetadataProvider._obj_path(flow_id, run_id, query_step)
url = f"{url}/tasks?{urlencode(query_params)}"
return cls._request(cls._monitor, url, "GET")
return cls._request(None, url, "GET")

@staticmethod
def _obj_path(
Expand Down

0 comments on commit b1fdc7d

Please sign in to comment.