1
0
Эх сурвалжийг харах

Bug(s) fixed: 147162
Bug Description: The interval parameter to slapi_eq_repeat() is being passed in as seconds, not milliseconds
Reviewed by: Nathan (Thanks!)
Fix Description: Multiply the interval value by 1000
Platforms tested: RHEL3
Flag Day: no
Doc impact: No
QA impact: should be covered by regular nightly and manual testing
New Tests integrated into TET: none

Rich Megginson 21 жил өмнө
parent
commit
b753a332a8

+ 1 - 1
ldap/servers/plugins/retrocl/retrocl_trim.c

@@ -478,7 +478,7 @@ void retrocl_init_trimming (void)
     
     retrocl_trim_ctx = slapi_eq_repeat(retrocl_housekeeping,
 				       NULL,(time_t)0,
-				       CHANGELOGDB_TRIM_INTERVAL);
+				       CHANGELOGDB_TRIM_INTERVAL * 1000);
 
 }