opensubscriber
   Find in this group all groups
 
Unknown more information…

j : java-dev@lucene.apache.org 10 September 2009 • 3:42AM -0400

RC4
by Mark Miller

REPLY TO AUTHOR
 
REPLY TO GROUP




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-unsubscribe@luce...
For additional commands, e-mail: java-dev-help@luce...

Bookmark with:

Delicious   Digg   reddit   Facebook   StumbleUpon

Related Messages

opensubscriber is not affiliated with the authors of this message nor responsible for its content.