Let me try something. In the “you’ve got to be joking” category. Tell me you 
wouldn’t have made the same mistake ;)

In several places:

String parent = new Path(leaderPath).getParent().toString();

was replaced with:

String parent = Paths.get(leaderPath).getParent().toString();

BUT, the new Path bit is actually a in org.apache.hadoop.fs that has lines like:

if (hasWindowsDrive(pathString) && pathString.charAt(0) != '/') {
  pathString = "/" + pathString;
}

And a number of the erorrs are about how “blah doesn’t begin with /“.

I’ll fix this and push and we’ll see. If that’s not it, we should revert but we 
won’t know until tomorrow.

Erick

> On Jul 15, 2020, at 11:27 AM, Uwe Schindler <u...@thetaphi.de> wrote:
> 
> RoutingToNodesWithPropertiesTest


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to