diff options
author | James Moger <james.moger@gitblit.com> | 2012-06-15 08:46:14 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-06-15 08:46:14 -0400 |
commit | 53d7f492420d98183197e0d856f5764f5ce80777 (patch) | |
tree | 5f9047f7a7ec5d9eeffc89245319d635c7b0c7c9 | |
parent | e09d4bb6558c7b6c59dec3911138aaaa2a0f4597 (diff) | |
download | gitblit-53d7f492420d98183197e0d856f5764f5ce80777.tar.gz gitblit-53d7f492420d98183197e0d856f5764f5ce80777.zip |
Update Lucene index version (issue 97)
-rw-r--r-- | docs/04_releases.mkd | 2 | ||||
-rw-r--r-- | src/com/gitblit/LuceneExecutor.java | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd index 8db8f7b1..a47c0861 100644 --- a/docs/04_releases.mkd +++ b/docs/04_releases.mkd @@ -12,6 +12,8 @@ #### changes
+- **Updated Lucene index version which will force a rebuild of ALL your Lucene indexes**
+Make sure to properly set *web.blobEncodings* before starting Gitblit if you are updating! (issue 97)
- Changed default layout for web ui from fixed-width layout to responsive (issue 101)
- IUserService interface has changed to better accomodate custom authentication and/or custom authorization
- Updated Japanese translation (Github/zakki)
diff --git a/src/com/gitblit/LuceneExecutor.java b/src/com/gitblit/LuceneExecutor.java index b3165434..81265f56 100644 --- a/src/com/gitblit/LuceneExecutor.java +++ b/src/com/gitblit/LuceneExecutor.java @@ -105,7 +105,7 @@ import com.gitblit.utils.StringUtils; public class LuceneExecutor implements Runnable {
- private static final int INDEX_VERSION = 2;
+ private static final int INDEX_VERSION = 3;
private static final String FIELD_OBJECT_TYPE = "type";
private static final String FIELD_ISSUE = "issue";
|