We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1fcb3e commit 60088b9Copy full SHA for 60088b9
eventmesh-runtime/src/main/java/org/apache/eventmesh/runtime/core/protocol/RetryContext.java
@@ -70,6 +70,11 @@ public final void run() throws Exception {
70
doRun();
71
return;
72
}
73
+ if (!eventMeshRetryPluginType.equals(commonConfiguration.getEventMeshStoragePluginType())) {
74
+ log.warn("Because eventmesh retry plugin type mismatched with storage plugin type, retry in memory.");
75
+ doRun();
76
+ return;
77
+ }
78
Optional<RetryStrategy> retryStrategy = Optional.ofNullable(
79
EventMeshExtensionFactory.getExtension(RetryStrategy.class,
80
commonConfiguration.getEventMeshRetryPluginType()));
0 commit comments