scheduling
scheduling copied to clipboard
fix for SCHEDULING-1861 breaks UNC paths for log4j
Original issue created by Fabien Viale on 07, Aug 2013 at 15:42 PM - SCHEDULING-1896
a UNC path like <BR/>PRECISION\shared will be transformed to file:///PRECISION/shared and new FIle(new URI("file:///PRECISION/shared")) will return "\PRECISION\shared" which is not the UNC path
A possible fix is to use file:/// as the url root as new FIle(new URI("file://///PRECISION/shared")) returns "<BR/>PRECISION\shared"
Could you please give more infos about how to reproduce it/visualize the issue. Thx