Skip to content
Snippets Groups Projects
Commit c5031b53 authored by srosse's avatar srosse
Browse files

no-jira: fix NPE in the indexer REST API for statistics if the indexer is disabled

parent 5100b21c
No related branches found
No related tags found
No related merge requests found
......@@ -69,8 +69,13 @@ public class IndexerWebService {
@Path("status")
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public Response getStatus(@Context HttpServletRequest request) {
String status;
SearchServiceStatus serviceStatus = SearchServiceFactory.getService().getStatus();
String status = serviceStatus.getStatus();
if(serviceStatus instanceof SearchServiceStatusImpl) {
status = serviceStatus.getStatus();
} else {
status = "disabled";
}
return Response.ok(new IndexerStatus(status)).build();
}
......@@ -85,8 +90,14 @@ public class IndexerWebService {
@Path("status")
@Produces({MediaType.TEXT_PLAIN})
public Response getPlainTextStatus(@Context HttpServletRequest request) {
String status;
SearchServiceStatus serviceStatus = SearchServiceFactory.getService().getStatus();
return Response.ok(serviceStatus.getStatus()).build();
if(serviceStatus instanceof SearchServiceStatusImpl) {
status = serviceStatus.getStatus();
} else {
status = "disabled";
}
return Response.ok(status).build();
}
/**
......@@ -123,8 +134,10 @@ public class IndexerWebService {
stats.setRunningFolderIndexerCount(fStatus.getNumberRunningFolderIndexer());
stats.setAvailableFolderIndexerCount(fStatus.getNumberAvailableFolderIndexer());
stats.setLastFullIndexTime(fStatus.getLastFullIndexTime());
stats.setStatus(status.getStatus());
} else {
stats.setStatus("disabled");
}
stats.setStatus(status.getStatus());
return stats;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment