Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
None
-
None
Description
configure() in HDFSEventSink hardcodes the file separator
// FIXME: Not portable to Windows this.path = dirpath + "/" + fileName;
Fix is very simple, just to use
this.path = dirpath + System.getProperty("file.separator") + fileName;