Skip to content

Commit f18cc19

Browse files
committed
Improve logs on failed sync connections
[ci] Signed-off-by: Moritz Kiefer <[email protected]>
1 parent bbbd262 commit f18cc19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/validator/src/main/scala/org/lfdecentralizedtrust/splice/validator/domain/DomainConnector.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ class DomainConnector(
139139
if (connections.isEmpty) {
140140
throw Status.NOT_FOUND
141141
.withDescription(
142-
s"sequencer connections for migration id $migrationId is empty, validate with your SV sponsor that your migration id is correct"
142+
s"sequencer connections for migration id $migrationId is empty at $time, validate with your SV sponsor that your migration id is correct"
143143
)
144144
.asRuntimeException()
145145
} else {
@@ -148,7 +148,7 @@ class DomainConnector(
148148
case None =>
149149
throw Status.NOT_FOUND
150150
.withDescription(
151-
s"sequencer connections for migration id $migrationId is empty, validate with your SV sponsor that your migration id is correct"
151+
s"sequencer connections for migration id $migrationId is empty at $time, validate with your SV sponsor that your migration id is correct"
152152
)
153153
.asRuntimeException()
154154
case Some(nonEmptyConnections) =>

0 commit comments

Comments
 (0)