Skip to content

Commit 77d08dc

Browse files
committed
Bugfixes around mGAP lucene indexes
1 parent ef0d1cb commit 77d08dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbrowse/src/org/labkey/jbrowse/model/JsonFile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ else if (existingLuceneDir != null && existingLuceneDir.exists())
980980
log.debug("Creating symlink to existing index: " + existingLuceneDir.getPath());
981981
try
982982
{
983-
Files.createSymbolicLink(existingLuceneDir.toPath(), luceneDir.toPath());
983+
Files.createSymbolicLink(luceneDir.toPath(), existingLuceneDir.toPath());
984984
}
985985
catch (IOException e)
986986
{

0 commit comments

Comments
 (0)