checkstyle fix
Change-Id: Ib6ac62007480df737cf1d3870565767539d91125
Showing
1 changed file
with
2 additions
and
1 deletions
| ... | @@ -124,7 +124,8 @@ public class ClusterCommunicationManager | ... | @@ -124,7 +124,8 @@ public class ClusterCommunicationManager |
| 124 | Endpoint nodeEp = new Endpoint(node.ip().toString(), node.tcpPort()); | 124 | Endpoint nodeEp = new Endpoint(node.ip().toString(), node.tcpPort()); |
| 125 | try { | 125 | try { |
| 126 | log.info("sending..."); | 126 | log.info("sending..."); |
| 127 | - Response resp = messagingService.sendAndReceive(nodeEp, message.subject().value(), SERIALIZER.encode(message)); | 127 | + Response resp = messagingService.sendAndReceive(nodeEp, |
| 128 | + message.subject().value(), SERIALIZER.encode(message)); | ||
| 128 | resp.get(1, TimeUnit.SECONDS); | 129 | resp.get(1, TimeUnit.SECONDS); |
| 129 | log.info("sent..."); | 130 | log.info("sent..."); |
| 130 | return true; | 131 | return true; | ... | ... |
-
Please register or login to post a comment