-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix CI #1830
Conversation
@@ -251,7 +251,6 @@ async def process_request( | |||
status_code=http.HTTPStatus.MOVED_PERMANENTLY, | |||
reason_phrase="Moved Permanently", | |||
headers=websockets.Headers(Location=app_url), | |||
body=None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The type for body
recently went from bytes | None
to bytes
python-websockets/websockets@e6d0ea1
It seems we've always just wanted the default value for body
anyway, so this seems safe to remove
Co-authored-by: Garrick Aden-Buie <[email protected]>
One of the deploy tests is still failing, and I'm not quite sure why. I manually checked the deployed app and everything seems to be working OK, so I'm gonna merge this since there are other important fixes here. cc @karangattu |
Closes #1829