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 dcd4199 commit 7240009Copy full SHA for 7240009
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## Unreleased
4
5
* Remove incorrect identifier reference for latest Simvue servers during reconnection.
6
+* Fixed missing online mode selection when retrieving configuration for `Client` class.
7
8
## [v1.1.3](https://github.com/simvue-io/client/releases/tag/v1.1.3) - 2024-12-09
9
simvue/client.py
@@ -107,7 +107,7 @@ def __init__(
107
specify URL, if unset this is read from the config file
108
"""
109
self._user_config = SimvueConfiguration.fetch(
110
- server_token=server_token, server_url=server_url
+ server_token=server_token, server_url=server_url, mode="online"
111
)
112
113
for label, value in zip(
0 commit comments