change updateTime to updated_at

This commit is contained in:
Asim Aslam
2021-10-26 17:31:34 +01:00
parent 40112efb61
commit 2d80920c1e
4 changed files with 35 additions and 35 deletions

View File

@@ -372,7 +372,7 @@ func (e *Function) Describe(ctx context.Context, req *function.DescribeRequest,
// set describe info
rsp.Status = m["status"].(string)
rsp.Timeout = m["timeout"].(string)
rsp.UpdateTime = m["updateTime"].(string)
rsp.UpdatedAt = m["updateTime"].(string)
return nil
}