parse first hop correctly

This commit is contained in:
Zlatin Balevsky
2019-05-25 18:42:23 +01:00
parent eae1b01c1c
commit dc3f4ba242

View File

@@ -164,7 +164,7 @@ abstract class Connection implements Closeable {
QueryEvent event = new QueryEvent ( searchEvent : searchEvent, QueryEvent event = new QueryEvent ( searchEvent : searchEvent,
replyTo : replyTo, replyTo : replyTo,
receivedOn : endpoint.destination, receivedOn : endpoint.destination,
firstHop : search.firstHop ) firstHop : Boolean.parseBoolean(search.firstHop) )
eventBus.publish(event) eventBus.publish(event)
} }