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

Commit 8bd4c69

Browse files
authored
Merge pull request #42 from slazarov/0.0.6.4
Fix: syncing bug due to naming the connections.
2 parents cb1a489 + 1ad465e commit 8bd4c69

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,9 @@ if __name__ == "__main__":
413413
main()
414414
```
415415
# Change log
416+
0.0.6.4 - 24/02/2018
417+
* Fixed order book syncing bug when more than 1 connection is online due to wrong connection/thread name.
418+
416419
0.0.6.3 - 18/02/2018
417420
* Major changes to how the code handles order book syncing. Syncing is done significantly faster than previous versions, i.e full sync of all Bittrex tickers takes ca. 4 minutes.
418421
* Fixed `on_open` bug as per [Issue #21](https://github.com/slazarov/python-bittrex-websocket/issues/21)

bittrex_websocket/websocket_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def _handle_connect(self, conn_event):
269269
:param conn_event: Contains the connection object.
270270
:type conn_event: ConnectEvent
271271
"""
272-
thread = Thread(target=self._init_connection, args=(conn_event.conn_obj,), name='BittrexConnectionSetup')
272+
thread = Thread(target=self._init_connection, args=(conn_event.conn_obj,))
273273
self.threads[thread.getName()] = thread
274274
conn_event.conn_obj.assign_thread(thread.getName())
275275
self.connections.update({conn_event.conn_obj.id: conn_event.conn_obj})

0 commit comments

Comments
 (0)