Skip to content

Commit 26679ba

Browse files
authored
Merge pull request #484 from aanil/server_status
Fix bug in checking ONT run in statusdb
2 parents e7dd64f + d3d858d commit 26679ba

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

VERSIONLOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# TACA Version Log
22

3+
## 20250825.1
4+
5+
Fix bug in checking ONT run in statusdb
6+
37
## 20250812.1
48

59
Add back missed FlowcellRunMetricsConnection check in statusdb

taca/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Main TACA module"""
22

3-
__version__ = "1.6.1"
3+
__version__ = "1.6.2"

taca/utils/statusdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def check_run_exists(self, ont_run) -> bool:
230230
db=self.dbname,
231231
ddoc="names",
232232
view="name",
233-
key=ont_run,
233+
key=ont_run.run_name,
234234
).get_result()["rows"]
235235
if len(ont_run_row) > 0:
236236
return True

0 commit comments

Comments
 (0)