diff --git a/README.md b/README.md index 9ecbc77..060e58e 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ to produce a complete package. This runs all the phases necessary, including com #### :guardsman: Secrets Detection Setup and Update -The PDS uses [Detect Secrets](Detect Secrets](https://nasa-ammos.github.io/slim/docs/guides/software-lifecycle/security/secrets-detection/)) to help prevent committing information to a repository that should remain secret. +The PDS uses [Detect Secrets](https://nasa-ammos.github.io/slim/docs/guides/software-lifecycle/security/secrets-detection/)) to help prevent committing information to a repository that should remain secret. For Detect Secrets to work, there is a one-time setup required to your personal global Git configuration, as well as several steps to create or update the **required** `.secrets.baseline` file needed to avoid false positive failures of the software. See [the wiki entry on Detect Secrets](https://github.com/NASA-PDS/nasa-pds.github.io/wiki/Git-and-Github-Guide#detect-secrets) to learn how to do this. diff --git a/src/main/java/gov/nasa/pds/search/servlet/RegistryLegacyServlet.java b/src/main/java/gov/nasa/pds/search/servlet/RegistryLegacyServlet.java index 3459382..c669590 100644 --- a/src/main/java/gov/nasa/pds/search/servlet/RegistryLegacyServlet.java +++ b/src/main/java/gov/nasa/pds/search/servlet/RegistryLegacyServlet.java @@ -95,16 +95,13 @@ public void init(ServletConfig servletConfig) throws ServletException { */ public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { - LOG.info("GET request received."); try { // Forward the query to the results page. LOG.info("Query: " + request.getQueryString()); String queryString = getQueryString(request); - String url = - String.format("%s/%s/%s?%s", this.solrServerUrl, this.solrCollection, + String url = String.format("%s/%s/%s?%s", this.solrServerUrl, this.solrCollection, this.solrRequestHandler, queryString); - LOG.info("URL: " + url); HttpClient client = HttpClient.newHttpClient();