kevinrr888 commented on PR #5961:
URL: https://github.com/apache/accumulo/pull/5961#issuecomment-3618450020

   More context:
   Seems my simplified example to:
   ```
       1) ObjectMapper mapper = new ObjectMapper();
   
       2) JsonNode node1 = mapper.readTree("{\"foo\":1,\"bar\":2}");
       3) JsonNode node2 = mapper.readTree("{\"bar\":2,\"foo\":1}");
   
       4) assertEquals(node1, node2);
   ```
   Does NOT actually fail the build, but the exact example (from 
https://github.com/apache/accumulo/pull/5948)
   ```
       1) ObjectMapper mapper = new ObjectMapper();
       
       2) JsonNode expectedJson = mapper.readTree(zKRootV2);
       3) JsonNode actualJson = mapper.readTree(new 
String(byteCapture.getValue(), UTF_8));
   
       4) assertEquals(expectedJson, actualJson);
   ```
   does fail the build...
   While I don't understand what's going on here, @dlmarion seems to, and is 
going to look into adding NonDex to the build


-- 
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]

Reply via email to