CFSchedule Coldfusion 10,repeatInterval不能超过24小时(86400秒)

时间:2013-11-28 07:36:15

标签: coldfusion coldfusion-9 coldfusion-10

Biweekly计划间隔在Coldfusion 10上不再有效。有什么工作吗?

我们正在使用程序,它是用户动态调度任务。所以不能使用一些硬编码修复。

<cfschedule action="Update" 
    task="launch_#pgmid#_#ProgramPath#" 
    operation="HTTPRequest"
    publish="yes"
    path="#rootpath#"
    file="log/#ProgramPath#_#pgmid#_launch.htm" 
    url="#url#"
    startdate="#dateformat(launchdate,'mmm/dd/yy')#"
    starttime="#time#" 
    interval="1209600" 
    requesttimeout="180"
>

1 个答案:

答案 0 :(得分:3)

使用CF10,您可以使用cfschedule的cronTime属性来设置您需要的任何计划(http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSe61e35da8d31851899e53a51353e870493-8000.html)。

或者,您可以安排两个月的任务抵消两周。