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.
2 parents 2e4a81d + 6d5306c commit e37a58bCopy full SHA for e37a58b
simvue/factory/proxy/remote.py
@@ -22,7 +22,6 @@ def __init__(
22
self, name: typing.Optional[str], uniq_id: str, suppress_errors: bool = True
23
) -> None:
24
self._url, self._token = get_auth()
25
- self.check_token()
26
27
self._headers: dict[str, str] = {
28
"Authorization": f"Bearer {self._token}",
@@ -32,6 +31,8 @@ def __init__(
32
31
"Content-Type": "application/msgpack"
33
}
34
super().__init__(name, uniq_id, suppress_errors)
+ self.check_token()
35
+
36
self._id = uniq_id
37
38
@skip_if_failed("_aborted", "_suppress_errors", (None, None))
0 commit comments