Skip to content

Commit

Permalink
Generated from 120b63d62f74c1320d0eaba7d92e7ce0a75acfc4
Browse files Browse the repository at this point in the history
removing 404 response code from examples
  • Loading branch information
SDK Automation committed Jun 15, 2020
1 parent 49774f1 commit d383726
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def get(
request = self._client.get(url, query_parameters, header_parameters)
response = self._client.send(request, stream=False, **operation_config)

if response.status_code not in [200, 404]:
if response.status_code not in [200]:
exp = CloudError(response)
exp.request_id = response.headers.get('x-ms-request-id')
raise exp
Expand Down

0 comments on commit d383726

Please sign in to comment.