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 b1cc12e commit edd0e20Copy full SHA for edd0e20
websocket_server/websocket_server.py
@@ -81,13 +81,13 @@ def send_message_to_all(self, msg):
81
self._multicast(msg)
82
83
def shutdown_gracefully(self, status=CLOSE_STATUS_NORMAL, reason=DEFAULT_CLOSE_REASON):
84
- self._shutdown_gracefully(status=CLOSE_STATUS_NORMAL, reason=DEFAULT_CLOSE_REASON)
+ self._shutdown_gracefully(status, reason)
85
86
def shutdown_abruptly(self):
87
self._shutdown_abruptly()
88
89
- def disconnect_clients_gracefully(self):
90
- self._disconnect_clients_gracefully()
+ def disconnect_clients_gracefully(self, status=CLOSE_STATUS_NORMAL, reason=DEFAULT_CLOSE_REASON):
+ self._disconnect_clients_gracefully(status, reason)
91
92
def disconnect_clients_abruptly(self):
93
self._disconnect_clients_abruptly()
0 commit comments