We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c64bc commit 4dcca79Copy full SHA for 4dcca79
connexion/decorators/response.py
@@ -89,10 +89,11 @@ def _wrapper(request, response):
89
connexion_response = \
90
self.operation.api.get_connexion_response(response, self.mimetype)
91
if not connexion_response.is_streamed:
92
- logger.warning("Skipping response validation for streamed response.")
93
self.validate_response(
94
connexion_response.body, connexion_response.status_code,
95
connexion_response.headers, request.url)
+ else:
96
+ logger.warning("Skipping response validation for streamed response.")
97
98
return response
99
0 commit comments