stillalex commented on code in PR #1459: URL: https://github.com/apache/solr/pull/1459#discussion_r1135928319
########## solr/core/src/test/org/apache/solr/cloud/AliasIntegrationTest.java: ########## @@ -291,20 +316,25 @@ public void testModifyPropertiesCAR() throws Exception { setAliasProperty.addProperty("foo", "baz"); setAliasProperty.addProperty("bar", "bam"); setAliasProperty.process(cluster.getSolrClient()); - checkFooAndBarMeta(aliasName, zkStateReader); + checkFooAndBarMeta(aliasName, zkStateReader, "baz", "bam"); // now verify we can delete setAliasProperty = CollectionAdminRequest.setAliasProperty(aliasName); setAliasProperty.addProperty("foo", ""); setAliasProperty.process(cluster.getSolrClient()); + checkFooAndBarMeta(aliasName, zkStateReader, null, "bam"); + + // TODO is this a bug? should "bar" be null after the following Review Comment: @gerlowskija this might be a bug? I added some assertions to this older test and results are a bit surprising. my understanding is that setting value to null should remove it, but it doesn't. maybe I am reading it wrong. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org