Skip to content

Commit

Permalink
GH-1091: update indexer generation for upcoming release
Browse files Browse the repository at this point in the history
  • Loading branch information
martinlippert committed Sep 8, 2023
1 parent e0b9e45 commit 6296b1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class SpringFactoriesIndexer implements SpringIndexer {

// whenever the implementation of the indexer changes in a way that the stored data in the cache is no longer valid,
// we need to change the generation - this will result in a re-indexing due to no up-to-date cache data being found
private static final String GENERATION = "GEN-4";
private static final String GENERATION = "GEN-5";

private static final String FILE_PATTERN = "**/META-INF/spring/*.factories";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public static enum SCAN_PASS {

// whenever the implementation of the indexer changes in a way that the stored data in the cache is no longer valid,
// we need to change the generation - this will result in a re-indexing due to no up-to-date cache data being found
private static final String GENERATION = "GEN-4";
private static final String GENERATION = "GEN-5";
private static final String INDEX_FILES_TASK_ID = "index-java-source-files-task-";

private static final String SYMBOL_KEY = "symbols";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class SpringIndexerXML implements SpringIndexer {

// whenever the implementation of the indexer changes in a way that the stored data in the cache is no longer valid,
// we need to change the generation - this will result in a re-indexing due to no up-to-date cache data being found
private static final String GENERATION = "GEN-4";
private static final String GENERATION = "GEN-5";

private static final String SYMBOL_KEY = "symbols";
private static final String BEANS_KEY = "beans";
Expand Down

0 comments on commit 6296b1a

Please sign in to comment.