Skip to content

Commit 1b74f34

Browse files
committed
Set monitor to None in filter tasks API
1 parent f5146d2 commit 1b74f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metaflow/plugins/metadata_providers/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ def filter_tasks_by_metadata(
343343
}
344344
url = ServiceMetadataProvider._obj_path(flow_id, run_id, query_step)
345345
url = f"{url}/tasks?{urlencode(query_params)}"
346-
return cls._request(cls._monitor, url, "GET")
346+
return cls._request(None, url, "GET")
347347

348348
@staticmethod
349349
def _obj_path(

0 commit comments

Comments
 (0)