Skip to content

Commit e796663

Browse files
committed
Raise Exception if no TransportManager instance is found when running this Murfey workflow
1 parent 7b50bb6 commit e796663

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/murfey/workflows/lif_to_stack.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,5 @@ def zocalo_cluster_request(
4444
},
4545
new_connection=True,
4646
)
47+
else:
48+
raise Exception("Unable to find transport manager")

src/murfey/workflows/tiff_to_stack.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,5 @@ def zocalo_cluster_request(
5151
},
5252
new_connection=True,
5353
)
54+
else:
55+
raise Exception("Unable to find transport manager")

0 commit comments

Comments
 (0)