Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
hiteshk25 committed Nov 29, 2023
1 parent 31660fd commit 12e95cb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ public void handleRequestBody(SolrQueryRequest req, SolrQueryResponse rsp) throw
rb.isDistrib = isDistrib(req);
tagRequestWithRequestId(rb);

if (req.getPath().contains("select")) {
if (req.getPath() != null && req.getPath().contains("select")) {
if (isShard) {
// log a simple message on start
log.info("Start Forwarded Search Query");
Expand Down

0 comments on commit 12e95cb

Please sign in to comment.