浏览代码

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 年之前
父节点
当前提交
b753a332a8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ldap/servers/plugins/retrocl/retrocl_trim.c

+ 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);
 
 }