Skip to content

Commit

Permalink
#30083 include in 23.10.24 LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
erickgonzalez committed Sep 26, 2024
1 parent 088fee7 commit d497672
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions dotCMS/hotfix_tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,3 +159,4 @@ This maintenance release includes the following code fixes:
152. https://github.com/dotCMS/core/issues/29321 : An Asset name starts with number and specific alphabets considers as an Image #29321
153. https://github.com/dotCMS/core/issues/29668 : Spike: PP bundles not being processed by Receiver #29668
154. https://github.com/dotCMS/core/issues/29719 : relax ES checks in /api/v1/probes/startup #29719
155. https://github.com/dotCMS/core/issues/30083 : Startup timeouts due to indexer concurrency issues #30083
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,6 @@ private static void unpauseImpl() {
OSGISystem.getInstance().initializeFramework();
Logger.infoEvery(ReindexThread.class, "--- ReindexThread Running", 60000);
cache.get().remove(REINDEX_THREAD_PAUSED);
final Thread thread = new Thread(getInstance().ReindexThreadRunnable,
"ReindexThreadRunnable");

final DotSubmitter submitter = DotConcurrentFactory.getInstance()
.getSubmitter("ReindexThreadSubmitter",
Expand All @@ -340,8 +338,8 @@ private static void unpauseImpl() {
new ThreadPoolExecutor.DiscardOldestPolicy())
.build()
);
submitter.submit(thread);
getInstance().state(ThreadState.RUNNING);
submitter.submit(getInstance().ReindexThreadRunnable);
}

}
Expand Down

0 comments on commit d497672

Please sign in to comment.