SOLR-6787 more logging to trace errors

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1649349 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Noble Paul 2015-01-04 15:07:24 +00:00
parent 81ce259cf5
commit 136f38c8c6
1 changed files with 2 additions and 1 deletions

View File

@ -87,7 +87,8 @@ public class TestBlobHandler extends AbstractFullDistribZkTestBase {
url = baseUrl + "/.system/blob/test/1";
map = TestSolrConfigHandlerConcurrent.getAsMap(url,cloudClient);
List l = (List) ConfigOverlay.getObjectByPath(map, false, Arrays.asList("response", "docs"));
assertNotNull(l);
assertNotNull(""+map, l);
assertTrue(""+map, l.size()>0);
map = (Map) l.get(0);
assertEquals(""+bytarr.length,String.valueOf(map.get("size")));