We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ece58d1 commit 59d8618Copy full SHA for 59d8618
2 files changed
Makefile
@@ -2,7 +2,7 @@ install:
2
uv sync --all-extras
3
4
update:
5
- rm uv.lock
+ rm -f uv.lock
6
uv sync
7
8
test:
datashield/api.py
@@ -371,7 +371,7 @@ def sessions(self) -> dict:
371
excluded_conns.append(conn.get_name())
372
373
# check for session status and wait until all are started
374
- for conn in [c for c in self.conns if c.name not in excluded_conns]:
+ for conn in [c for c in self.conns if c.get_name() not in excluded_conns]:
375
try:
376
if conn.is_session_started():
377
started_conns.append(conn.get_name())
0 commit comments