created https://issues.apache.org/jira/browse/CASSANDRA-794 for this
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("(?:\\\\|/)+", "/");; > } > >