You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: webknossos-tracingstore/app/com/scalableminds/webknossos/tracingstore/tracings/editablemapping/EditableMappingUpdater.scala
+8-11Lines changed: 8 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -347,6 +347,7 @@ class EditableMappingUpdater(
347
347
agglomerateId2 <- agglomerateIdForSegmentId(segmentId2) ?~>"Failed to look up agglomerate ids for merge action segments"
348
348
agglomerateGraph1 <- agglomerateGraphForIdWithFallback(mapping, agglomerateId1) ?~>s"Failed to get agglomerate graph for id $agglomerateId1"
349
349
agglomerateGraph2 <- agglomerateGraphForIdWithFallback(mapping, agglomerateId2) ?~>s"Failed to get agglomerate graph for id $agglomerateId2"
350
+
_ <-Fox.fromBool(agglomerateGraph1.segments.contains(segmentId1)) ?~>s"Segment $segmentId1 as queried by position ${update.segmentPosition1} is not contained in fetched agglomerate graph for agglomerate $agglomerateId1. actionTimestamp: ${update.actionTimestamp}, graph segments: ${agglomerateGraph1.segments}"
350
351
_ <-Fox.fromBool(agglomerateGraph2.segments.contains(segmentId2)) ?~>s"Segment $segmentId2 as queried by position ${update.segmentPosition2} is not contained in fetched agglomerate graph for agglomerate $agglomerateId2. actionTimestamp: ${update.actionTimestamp}, graph segments: ${agglomerateGraph2.segments}"
0 commit comments