Skip to content

Commit

Permalink
Fix issue that prevents connecting to different data server on the sa…
Browse files Browse the repository at this point in the history
…me host
  • Loading branch information
tobiasah committed Nov 14, 2024
1 parent e59bb0a commit 5e183d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# zhinst-qcodes Changelog

## Version 0.5.4
* Fix issue that prevented connecting to different data server on the same host.

## Version 0.5.4
* Fix issue that cause node names to collide with native attributes. (`/zi/debug/log`
collided with the native log attribute on Nodes)
Expand Down
2 changes: 1 addition & 1 deletion src/zhinst/qcodes/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ def __new__(
if not new_session:
for instance in Session.instances():
if instance.server_host == server_host and (
instance.is_hf2_server == hf2
(instance.is_hf2_server and hf2)
or server_port is None
or instance.server_port == server_port
):
Expand Down

0 comments on commit 5e183d3

Please sign in to comment.