Skip to content

Commit 7240009

Browse files
committed
Fix missing 'online' mode choice in Client class configuration
1 parent dcd4199 commit 7240009

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Unreleased
44

55
* Remove incorrect identifier reference for latest Simvue servers during reconnection.
6+
* Fixed missing online mode selection when retrieving configuration for `Client` class.
67

78
## [v1.1.3](https://github.com/simvue-io/client/releases/tag/v1.1.3) - 2024-12-09
89

simvue/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def __init__(
107107
specify URL, if unset this is read from the config file
108108
"""
109109
self._user_config = SimvueConfiguration.fetch(
110-
server_token=server_token, server_url=server_url
110+
server_token=server_token, server_url=server_url, mode="online"
111111
)
112112

113113
for label, value in zip(

0 commit comments

Comments
 (0)