do not try to respond to regex queries until properly implemented

auto-update
Zlatin Balevsky 2022-01-12 14:03:12 +00:00
parent bd3555dce9
commit e6b76826f4
No known key found for this signature in database
GPG Key ID: A72832072D525E41
1 changed files with 6 additions and 0 deletions

View File

@ -40,6 +40,12 @@ public class SearchManager {
return
}
responderAddress.put(event.searchEvent.uuid, event)
if (event.searchEvent.regex) {
log.info("dropping regex query")
return
}
eventBus.publish(event.searchEvent)
}