Remove use of the deprecated stream argument to Responses (#4484)

This commit is contained in:
Jeppe Fihl-Pearson 2021-10-27 12:12:17 +01:00 committed by GitHub
parent 2218806f3d
commit f240de5482
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -442,7 +442,6 @@ class BotocoreEventMockAWS(BaseMockAWS):
method=method,
url=re.compile(key),
callback=convert_flask_to_responses_response(value),
stream=True,
match_querystring=False,
)
)
@ -451,7 +450,6 @@ class BotocoreEventMockAWS(BaseMockAWS):
method=method,
url=re.compile(r"https?://.+\.amazonaws.com/.*"),
callback=not_implemented_callback,
stream=True,
match_querystring=False,
)
)
@ -460,7 +458,6 @@ class BotocoreEventMockAWS(BaseMockAWS):
method=method,
url=re.compile(r"https?://.+\.amazonaws.com/.*"),
callback=not_implemented_callback,
stream=True,
match_querystring=False,
)
)