Revision: 2093 http://archive-access.svn.sourceforge.net/archive-access/?rev=2093&view=rev Author: bradtofel Date: 2007-11-27 19:15:42 -0800 (Tue, 27 Nov 2007) Log Message: ----------- BUGFIX: (ACC-9) thread variable was static, which limited total number of index merging threads to... 1. Modified Paths: -------------- trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/resourceindex/bdb/BDBIndexUpdater.java Modified: trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/resourceindex/bdb/BDBIndexUpdater.java =================================================================== --- trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/resourceindex/bdb/BDBIndexUpdater.java 2007-11-28 03:14:45 UTC (rev 2092) +++ trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/resourceindex/bdb/BDBIndexUpdater.java 2007-11-28 03:15:42 UTC (rev 2093) @@ -68,13 +68,12 @@ private int runInterval = DEFAULT_RUN_INTERVAL_MS; -// private ArcIndexer indexer = new ArcIndexer(); - /** * Thread object of update thread -- also is flag indicating if the thread - * has already been started -- static, and access to it is synchronized. + * has already been started. Access to it is synchronized. */ - private static Thread updateThread = null; + private Thread updateThread = null; + /** * Default constructor */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |