Commit 66960b44 authored by Wei Shoulin's avatar Wei Shoulin
Browse files

add pmapname

parent 81641187
...@@ -215,6 +215,7 @@ class Level1DataApi(object): ...@@ -215,6 +215,7 @@ class Level1DataApi(object):
prc_status : [int] prc_status : [int]
prc_time : [str] prc_time : [str]
pipeline_id : [str] pipeline_id : [str]
pmapname : [str]
refs: [dict] refs: [dict]
return csst_dfs_common.models.Result return csst_dfs_common.models.Result
...@@ -233,6 +234,7 @@ class Level1DataApi(object): ...@@ -233,6 +234,7 @@ class Level1DataApi(object):
prc_status = get_parameter(kwargs, "prc_status", 0), prc_status = get_parameter(kwargs, "prc_status", 0),
prc_time = get_parameter(kwargs, "prc_time", format_datetime(datetime.now())), prc_time = get_parameter(kwargs, "prc_time", format_datetime(datetime.now())),
pipeline_id = get_parameter(kwargs, "pipeline_id", ""), pipeline_id = get_parameter(kwargs, "pipeline_id", ""),
pmapname = get_parameter(kwargs, "pmapname", ""),
refs = get_parameter(kwargs, "refs", {}) refs = get_parameter(kwargs, "refs", {})
) )
def stream(rec): def stream(rec):
......
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