Browse Source

Fix BftsmartMessageService throw Exception...

tags/1.0.0
shaozhuguang 5 years ago
parent
commit
6e8130c30a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/consensus/consensus-bftsmart/src/main/java/com/jd/blockchain/consensus/bftsmart/client/BftsmartMessageService.java

+ 1
- 1
source/consensus/consensus-bftsmart/src/main/java/com/jd/blockchain/consensus/bftsmart/client/BftsmartMessageService.java View File

@@ -40,7 +40,7 @@ public class BftsmartMessageService implements MessageService {
asyncFuture.complete(result); asyncFuture.complete(result);


} catch (Exception e) { } catch (Exception e) {
throw new RuntimeException();
throw new RuntimeException(e);


} finally { } finally {
asyncPeerProxyPool.returnObject(asynchServiceProxy); asyncPeerProxyPool.returnObject(asynchServiceProxy);


Loading…
Cancel
Save