We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4237b0 + 3e1a31f commit 918a317Copy full SHA for 918a317
frontend/pom.xml
@@ -22,7 +22,7 @@
22
<plugin>
23
<groupId>com.github.eirslett</groupId>
24
<artifactId>frontend-maven-plugin</artifactId>
25
- <version>1.6</version>
+ <version>1.11.0</version>
26
<executions>
27
<execution>
28
<id>install node and yarn</id>
starter/src/main/java/com/insidion/axon/openadmin/dlq/DlqActionEndpoint.kt
@@ -30,7 +30,7 @@ class DlqActionEndpoint(
30
val list = it.toList()
31
val i = list.first()
32
val firstMessage = i.message()
33
- val sequence = sequencingPolicy.getSequenceIdentifierFor(firstMessage).toString()
+ val sequence = sequencingPolicy.getSequenceIdentifierFor(firstMessage)?.toString() ?: i.message().identifier
34
DlqItem(
35
sequence,
36
list.size,
0 commit comments