Skip to content

Commit

Permalink
changed blocking read timeout to Long.MAX...
Browse files Browse the repository at this point in the history
  • Loading branch information
yohanakh committed Mar 4, 2020
1 parent 4b9869b commit f9ba266
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public void run() {
while (true) {

try {
Delivery delivery = gigaSpace.read(template, 10000);
Delivery delivery = gigaSpace.read(template, Long.MAX_VALUE);
if (delivery != null) {
String orderId = delivery.getOrderId();
Span orderSpan = tracingSpanMap.get(orderId);
Expand Down

0 comments on commit f9ba266

Please sign in to comment.