Oh! I am sorry, that's my fault :-( Hope we can fix it soon, its only one line. Just copy this ctor from NativeFSLockFactory.
Uwe ----- Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: [email protected] > -----Original Message----- > From: Mark Miller [mailto:[email protected]] > Sent: Wednesday, September 09, 2009 9:43 PM > To: [email protected] > Subject: RC4 > > Yonik mentioned that RC3 broke Solr. > > It looks like we are going to need an RC4. > > > /** > * Instantiate using the provided directory name (String). > * @param lockDirName where lock files should be created. > */ > public SimpleFSLockFactory(String lockDirName) throws IOException { > lockDir = new File(lockDirName); > setLockDir(lockDir); > } > > should be > > /** > * Instantiate using the provided directory name (String). > * @param lockDirName where lock files should be created. > */ > public SimpleFSLockFactory(String lockDirName) throws IOException { > File lockDir = new File(lockDirName); > setLockDir(lockDir); > } > > And we need to add a test that hits that constructor. > > -- > - Mark > > http://www.lucidimagination.com > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
