Skip to content

Commit 7f402c8

Browse files
authored
Invert the order of proposed subprotocols apollo and graphql-ws (#265)
Should fix make all_tests with countries.trevorblades.com
1 parent 75a771d commit 7f402c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gql/transport/websockets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ def __init__(
203203
self.close_exception: Optional[Exception] = None
204204

205205
self.supported_subprotocols = [
206-
self.GRAPHQLWS_SUBPROTOCOL,
207206
self.APOLLO_SUBPROTOCOL,
207+
self.GRAPHQLWS_SUBPROTOCOL,
208208
]
209209

210210
async def _send(self, message: str) -> None:

0 commit comments

Comments
 (0)