lrhkobe opened a new issue #460:
URL: https://github.com/apache/incubator-eventmesh/issues/460
## Enhancement Request
EventMesh support custom retry times configuration when SubcriptionType is
`ASYNC`, but hard-coded when SubcriptionType is `SYNC`.
```
public void pushRetry(DownStreamMsgContext downStreamMsgContext) {
...
int maxRetryTimes =
SubcriptionType.SYNC.equals(downStreamMsgContext.subscriptionItem.getType()) ?
1 : eventMeshTCPServer.getEventMeshTCPConfiguration().eventMeshTcpMsgRetryTimes;
...
}
```
<!--
A clear and concise description of what the enhancement is.
-->
### Describe the solution you'd like
Add custom configuration in `eventmesh.properties` refer to config when the
SubcriptionType is `ASYNC`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]