You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2020/04/01 05:41:55 UTC

[GitHub] [rocketmq] rushsky518 opened a new issue #1904: Get flushStatus from CompletableFuture, error log is missed when flush timeout

rushsky518 opened a new issue #1904: Get flushStatus from CompletableFuture, error log is missed when flush timeout
URL: https://github.com/apache/rocketmq/issues/1904
 
 
   ````java
   CompletableFuture<PutMessageStatus> flushResultFuture = submitFlushRequest(result, putMessageResult, msg);
   CompletableFuture<PutMessageStatus> replicaResultFuture = submitReplicaRequest(result, putMessageResult, msg);
   return flushResultFuture.thenCombine(replicaResultFuture, (flushStatus, replicaStatus) -> {
   	if (flushStatus != PutMessageStatus.PUT_OK) {
   		putMessageResult.setPutMessageStatus(PutMessageStatus.FLUSH_DISK_TIMEOUT);
   	}
   	if (replicaStatus != PutMessageStatus.PUT_OK) {
   		putMessageResult.setPutMessageStatus(replicaStatus);
   	}
   	return putMessageResult;
   });
   ````

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services