Skip to content

Commit 31fb085

Browse files
authored
Merge pull request #627 from simvue-io/fixing-reconnect-again
Checking for existence of self._name is incorrect in v2
2 parents 5abefea + 1f6109f commit 31fb085

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

simvue/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1525,7 +1525,7 @@ def set_status(
15251525
bool
15261526
if status update was successful
15271527
"""
1528-
if not self._active or not self._name:
1528+
if not self._active:
15291529
self._error("Run is not active")
15301530
return False
15311531

0 commit comments

Comments
 (0)