Houston Putman created SOLR-16933:
-------------------------------------

             Summary: The API Tool throws away the response for Solr Queries
                 Key: SOLR-16933
                 URL: https://issues.apache.org/jira/browse/SOLR-16933
             Project: Solr
          Issue Type: Bug
      Security Level: Public (Default Security Level. Issues are Public)
          Components: SolrCLI
    Affects Versions: 9.3
            Reporter: Houston Putman


When running Solr 9.3 in Docker:
{code:bash}
$ solr api -get http://localhost:8983/solr/test/select
{
  "responseHeader":{
    "zkConnected":true,
    "status":0,
    "QTime":0,
    "params":{
      "wt":"javabin",
      "version":"2"}},
  "response":[]}
{code}
{code:bash}
$ solr api -get http://localhost:8983/solr/test/select
{
  "responseHeader":{
    "zkConnected":true,
    "status":0,
    "QTime":1,
    "params":{
      "version":"2"
    }
  },
  "response":{
    "numFound":0,
    "start":0,
    "numFoundExact":true,
    "docs":[ ]
  }
{code}

When running Solr 9.2 in docker:
{code:bash}
$ solr api -get http://localhost:8983/solr/test/select
{
  "responseHeader":{
    "zkConnected":true,
    "status":0,
    "QTime":7,
    "params":{"wt":"json"}},
  "response":{
    "numFound":0,
    "start":0,
    "numFoundExact":true,
    "docs":[]}}
{code}




--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to