Skip to content

Commit

Permalink
Merge pull request #167 from ide-rea/master
Browse files Browse the repository at this point in the history
增加手动触发流水线配置
  • Loading branch information
seiriosPlus authored Mar 12, 2024
2 parents 580b00d + 2288b91 commit 69349f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
name: Python package

on:
workflow_dispatch:
push:
branches: [ "master" ]
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion appbuilder/utils/model_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def list(self, request: GetModelListRequest = None, timeout: float = None,
self.http_client.check_response_json(data)
request_id = self.http_client.response_request_id(response)
self.__class__._check_service_error(request_id, data)
response = GetModelListResponse.from_json(payload=json.dumps(data))
response = GetModelListResponse.from_json(payload=json.dumps(data), ignore_unknown_fields=True)
response.request_id = request_id
return response

Expand Down

0 comments on commit 69349f3

Please sign in to comment.