Hi,

Attached a patch to set the default idsync interval from 30 seconds to
24 hrs. Later a UI in webadmin will be provided to change the interval
and make it persistent.

Thanks,
Johnny
Index: src/server/Simias.Server/ChangeLog
===================================================================
--- src/server/Simias.Server/ChangeLog	(revision 6633)
+++ src/server/Simias.Server/ChangeLog	(working copy)
@@ -1,3 +1,8 @@
+2006-12-19  Johnny Jacob  <[EMAIL PROTECTED]>
+
+	* IdentitySyncService.cs : Changed default identity sync interval
+	from 30 to 86400 seconds ( 24 hours).
+	
 2006-12-15  Johnny Jacob  <[EMAIL PROTECTED]>
 
 	* IdentitySyncManager.asmx.cs : MonthsOfYear. Added missing May.
Index: src/server/Simias.Server/IdentitySyncService.cs
===================================================================
--- src/server/Simias.Server/IdentitySyncService.cs	(revision 6632)
+++ src/server/Simias.Server/IdentitySyncService.cs	(working copy)
@@ -561,7 +563,7 @@
 		static bool running = false;
 		static bool quit;
 		static internal bool syncOnStart = true;
-		static internal int syncInterval = 30;
+		static internal int syncInterval = 60 * 60 * 24;
 		static internal int deleteGracePeriod = 60 * 60 * 24 * 5;  // 5 days
 		static internal bool syncDisabled = false;
 		static Thread syncThread = null;
_______________________________________________
ifolder-dev mailing list
[email protected]
http://forge.novell.com/mailman/listinfo/ifolder-dev

Reply via email to