Yes, for test case

2010/2/15 Jonathan Ellis <jbel...@gmail.com>

> are you mixing windows and unix machines in the same cluster?
>
> On Fri, Feb 12, 2010 at 2:38 PM, ruslan usifov <ruslan.usi...@gmail.com>
> wrote:
> > Also i have problem with StreamInitiateVerbHandler, the problem in
> > PendingFile.getTargetFile, namely difference in slashes on win and unix,
> so
> > i change PendingFile.java like this:
> >
> >     public PendingFile(String targetFile, long expectedBytes, String
> table)
> >     {
> >         targetFile_ = targetFile.replaceAll("(?:\\\\|/)+", "/");
> >         expectedBytes_ = expectedBytes;
> >         table_ = table;
> >         ptr_ = 0;
> >     }
> >
> >     public void setTargetFile(String file)
> >     {
> >         targetFile_ = file.replaceAll("(?:\\\\|/)+", "/");;
> >     }
> >
> >
>

Reply via email to