Skip to content

Commit

Permalink
Fix send get raw schema request (apache#6650)
Browse files Browse the repository at this point in the history
### Motivation
fix clientCnx sendGetRawSchema remove get schema request
  • Loading branch information
congbobo184 authored Apr 8, 2020
1 parent a658791 commit 4d29bc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ public CompletableFuture<CommandGetSchemaResponse> sendGetRawSchema(ByteBuf requ
if (!writeFuture.isSuccess()) {
log.warn("{} Failed to send GetSchema request to broker: {}", ctx.channel(),
writeFuture.cause().getMessage());
pendingGetLastMessageIdRequests.remove(requestId);
pendingGetSchemaRequests.remove(requestId);
future.completeExceptionally(writeFuture.cause());
}
});
Expand Down

0 comments on commit 4d29bc4

Please sign in to comment.