We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74d6a60 commit b8f572bCopy full SHA for b8f572b
lib/solr.py
@@ -59,7 +59,8 @@ def get_statistics_shards(self, time_period):
59
60
# URL for Solr status to check active cores
61
solr_query_params = {"action": "STATUS", "wt": "json"}
62
- solr_url = self.solr_server + "/admin/cores"
+ solr_url = self.solr_server + "admin/cores"
63
+ self.logger.debug("Solr cores URL: %s", solr_url)
64
response = requests.get(solr_url, params=solr_query_params)
65
66
if response.status_code == requests.codes.ok:
0 commit comments