Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 01c86a4

Browse files
committed
Merge branch '0.0.6'
1 parent e528877 commit 01c86a4

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,8 +427,9 @@ if __name__ == "__main__":
427427
```
428428
# Change log
429429
0.0.6
430-
* Reconnection - WIP
430+
* Reconnection - Experimental
431431
* Fixed a bug when subscribing to multiple subscription types at once resulted in opening unnecessary connections even though there is sufficient capacity in the existing [Commit 7fd21c](https://github.com/slazarov/python-bittrex-websocket/commit/7fd21cad87a8bd7c88070bab0fd5774b0324332e)
432+
* Numerous code optimizations
432433

433434
0.0.5.1
434435
* Updated cfscrape minimum version requirement ([Issue #12](https://github.com/slazarov/python-bittrex-websocket/issues/12)).

bittrex_websocket/websocket_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def get_url(url_list):
287287
return result
288288

289289
urls = ['https://socket-stage.bittrex.com/signalr',
290-
'https://socket.bittrex.com/signalr1']
290+
'https://socket.bittrex.com/signalr']
291291
url_gen = (url for url in urls)
292292
conn, corehub, conn_id = conn_obj.conn, conn_obj.corehub, conn_obj.id
293293

@@ -302,7 +302,7 @@ def get_url(url_list):
302302
# Add handlers
303303
corehub.client.on('updateExchangeState', self._on_tick_update)
304304
corehub.client.on('updateSummaryState', self._on_ticker_update)
305-
conn.wait(30)
305+
conn.wait(1200000)
306306
# When we purposely close the connection, the script will exit conn.wait()
307307
# so we need to inform the script that it should not try to reconnect.
308308
if conn_obj.close_me is True:

0 commit comments

Comments
 (0)