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: u...@thetaphi.de

> -----Original Message-----
> From: Mark Miller [mailto:markrmil...@gmail.com]
> Sent: Wednesday, September 09, 2009 9:43 PM
> To: java-dev@lucene.apache.org
> 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: java-dev-unsubscr...@lucene.apache.org
> For additional commands, e-mail: java-dev-h...@lucene.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org

Reply via email to