sigram commented on code in PR #4063:
URL: https://github.com/apache/solr/pull/4063#discussion_r2709202314


##########
solr/cross-dc-manager/src/test/org/apache/solr/crossdc/manager/SolrAndKafkaIntegrationTest.java:
##########
@@ -332,6 +338,39 @@ public void testParallelUpdatesToCluster2() throws 
Exception {
     assertCluster2EventuallyHasDocs(COLLECTION, "*:*", 5000);
   }
 
+  @Test
+  @SuppressWarnings({"unchecked"})
+  public void testMetrics() throws Exception {
+    CloudSolrClient client = solrCluster1.getSolrClient();
+    SolrInputDocument doc = new SolrInputDocument();
+    doc.addField("id", String.valueOf(new Date().getTime()));
+    doc.addField("text", "some test");
+
+    client.add(COLLECTION, doc);
+
+    client.commit(COLLECTION);
+
+    System.out.println("Sent producer record");

Review Comment:
   It's a copy-paste from other test in this suite, I'll clean up all of these.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to