修改云函数定时配置导致执行失败?
我的云函数中会调用另外一个云函数,但我将定时配置设为每天0点,被调用的云函数总是不会被调用,当我把定时配置设为每10s,被调用云函数能正常被调用。这是什么问题啊?
定时配置(调用失败):
{
"triggers": [
{
"name": "myTrigger",
"type": "timer",
"config": "0 0 0 * * * *"
}
]
}
用如下配置可以正常调用:
{
"triggers": [
{
"name": "myTrigger",
"type": "timer",
"config": "*/10 * * * * * *"
}
]
}
云函数代码:
// 云函数入口文件
const cloud = require('wx-server-sdk')
cloud.init()
// 云函数入口函数
exports.main = async (event, context) => {
cloud.callFunction({ name: 'another-cloud-function', data: { _id: event._id } })
})
}