Skip to content

Commit e93d548

Browse files
authored
fix: Add db_name parameter for list_import_jobs() (#3088)
issue: #2982 Signed-off-by: yhmo <yihua.mo@zilliz.com>
1 parent 28f713c commit e93d548

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pymilvus/bulk_writer/bulk_import.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,7 @@ def get_import_progress(
266266
def list_import_jobs(
267267
url: str,
268268
collection_name: str = "",
269+
db_name: str = "",
269270
cluster_id: str = "",
270271
api_key: str = "",
271272
page_size: int = 10,
@@ -295,6 +296,7 @@ def list_import_jobs(
295296

296297
params = {
297298
"collectionName": collection_name,
299+
"dbName": db_name,
298300
"clusterId": cluster_id,
299301
"pageSize": page_size,
300302
"currentPage": current_page,

0 commit comments

Comments
 (0)