increase max clients to 4

This commit is contained in:
makaveli10
2023-08-08 21:12:39 +08:00
parent 00127a34dc
commit c6572089bf
+1 -1
View File
@@ -38,7 +38,7 @@ class TranscriptionServer:
self.clients = {} self.clients = {}
self.websockets = {} self.websockets = {}
self.clients_start_time = {} self.clients_start_time = {}
self.max_clients = 1 self.max_clients = 4
self.max_connection_time = 600 # in seconds self.max_connection_time = 600 # in seconds
def get_wait_time(self): def get_wait_time(self):