Hi,

I'm using Solr 5.3.0 and noticed that the following code does not work
with Solr Cloud:
    CollectionAdminRequest.Reload reloadReq = new
CollectionAdminRequest.Reload();
    reloadReq.process(client, collection);

It complains that the name parameter is required. When adding
    reloadReq.setCollectionName(collection);
it works. But why would I need to specify the collection name twice?

regards,
Hendrik

Reply via email to