Commit 6981a2d4 authored by Wei Shoulin's avatar Wei Shoulin
Browse files

add build_id

parent 6ed7484c
Pipeline #2892 passed with stage
...@@ -34,7 +34,9 @@ class Level2DataApi(object): ...@@ -34,7 +34,9 @@ class Level2DataApi(object):
qc2_status : [int], qc2_status : [int],
prc_status : [int], prc_status : [int],
import_status : [int], import_status : [int],
filename: [str] filename: [str],
build_id : [int],
pipeline_id: [str],
limit: limits returns the number of records,default 0:no-limit limit: limits returns the number of records,default 0:no-limit
return: csst_dfs_common.models.Result return: csst_dfs_common.models.Result
...@@ -54,6 +56,8 @@ class Level2DataApi(object): ...@@ -54,6 +56,8 @@ class Level2DataApi(object):
filename = get_parameter(kwargs, "filename"), filename = get_parameter(kwargs, "filename"),
object_name = get_parameter(kwargs, "object_name"), object_name = get_parameter(kwargs, "object_name"),
limit = get_parameter(kwargs, "limit", 0), limit = get_parameter(kwargs, "limit", 0),
pipeline_id = get_parameter(kwargs, "pipeline_id",""),
build_id = get_parameter(kwargs, "build_id", -1024),
other_conditions = {"test":"cnlab.test"} other_conditions = {"test":"cnlab.test"}
),metadata = get_auth_headers()) ),metadata = get_auth_headers())
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment