Fix websockets (#527)

This commit is contained in:
Nikhil Rao 2023-02-12 14:53:21 -08:00 committed by GitHub
parent f37540286c
commit 6553be524f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
0.1.15
0.1.16

View File

@ -42,7 +42,7 @@ class Config(Base):
# Backend transport methods.
backend_transports: Optional[
constants.Transports
] = constants.Transports.POLLING_WEBSOCKET
] = constants.Transports.WEBSOCKET_POLLING
# List of origins that are allowed to connect to the backend API.
cors_allowed_origins: Optional[list] = [constants.CORS_ALLOWED_ORIGINS]