Skip to content

Commit

Permalink
fix: mysql model validation errors (#6829)
Browse files Browse the repository at this point in the history
Remove "body" for RESPONSE_SCHEMA_NOT_IN_SPEC errors
  • Loading branch information
nschonni authored and raych1 committed Aug 1, 2019
1 parent 7cfa94a commit e6dc5a0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,8 @@
"api-version": "2017-12-01-preview"
},
"responses": {
"200": {
"body": ""
},
"202": {
"body": ""
},
"204": {
"body": ""
}
"200": {},
"202": {},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,8 @@
"api-version": "2017-12-01"
},
"responses": {
"200": {
"body": ""
},
"202": {
"body": ""
},
"204": {
"body": ""
}
"200": {},
"202": {},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,8 @@
"api-version": "2017-12-01"
},
"responses": {
"200": {
"body": ""
},
"202": {
"body": ""
},
"204": {
"body": ""
}
"200": {},
"202": {},
"204": {}
}
}

0 comments on commit e6dc5a0

Please sign in to comment.