[java-opensaml COMMIT] /trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/AbstractStorageService.java

noreply at shibboleth.net noreply at shibboleth.net
Fri Oct 11 11:56:28 EDT 2013


Author: scantor
Date: Fri Oct 11 11:56:28 2013
New Revision: 3468

URL: http://svn.shibboleth.net/view/java-opensaml?rev=3468&view=rev
Log:
Fix timer used to schedule tasks.

Modified:
    trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/AbstractStorageService.java

Modified: trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/AbstractStorageService.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/AbstractStorageService.java?rev=3468&r1=3467&r2=3468&view=diff
==============================================================================
--- trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/AbstractStorageService.java (original)
+++ trunk/opensaml-storage-api/src/main/java/org/opensaml/storage/AbstractStorageService.java Fri Oct 11 11:56:28 2013
@@ -181,7 +181,7 @@
             } else {
                 internalTaskTimer = cleanupTaskTimer;
             }
-            cleanupTaskTimer.schedule(cleanupTask, cleanupInterval * 1000, cleanupInterval * 1000);
+            internalTaskTimer.schedule(cleanupTask, cleanupInterval * 1000, cleanupInterval * 1000);
         }
     }
     



More information about the commits mailing list