You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by ch...@apache.org on 2016/03/09 08:55:05 UTC

svn commit: r1734193 - /jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java

Author: chetanm
Date: Wed Mar  9 07:55:05 2016
New Revision: 1734193

URL: http://svn.apache.org/viewvc?rev=1734193&view=rev
Log:
OAK-4109 - Fix typo in async indexer thread name

Modified:
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java?rev=1734193&r1=1734192&r2=1734193&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/AsyncIndexUpdate.java Wed Mar  9 07:55:05 2016
@@ -430,7 +430,7 @@ public class AsyncIndexUpdate implements
         String checkpointToRelease = afterCheckpoint;
         boolean updatePostRunStatus = false;
         try {
-            String newThreadName = "aysnc-index-update-" + name;
+            String newThreadName = "async-index-update-" + name;
             log.trace("Switching thread name to {}", newThreadName);
             threadNameChanged = true;
             Thread.currentThread().setName(newThreadName);