From 117a6754b5e4ea615fdeaac8499dffc387cc3373 Mon Sep 17 00:00:00 2001 From: Himanshu Gupta Date: Fri, 18 Sep 2015 23:07:44 -0500 Subject: [PATCH] improving msging when indexing service is not found --- .../main/java/io/druid/server/http/OverlordProxyServlet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/main/java/io/druid/server/http/OverlordProxyServlet.java b/server/src/main/java/io/druid/server/http/OverlordProxyServlet.java index 4d62ae265c5..ebb6dda5ba7 100644 --- a/server/src/main/java/io/druid/server/http/OverlordProxyServlet.java +++ b/server/src/main/java/io/druid/server/http/OverlordProxyServlet.java @@ -50,7 +50,7 @@ public class OverlordProxyServlet extends ProxyServlet try { final Server indexer = selector.pick(); if (indexer == null) { - throw new ISE("Cannot find instance of indexingService"); + throw new ISE("Can't find indexingService, did you configure druid.selectors.indexing.serviceName same as druid.service at overlord?"); } return new URI( request.getScheme(),