通过API更新时日期搞砸了

时间:2019-03-06 10:41:56

标签: activecollab

我们有一个脚本在23:00运行,该脚本将所有未关闭的票证移至第二天。从去年年初到最近,该脚本一直运行良好。

最近是否有任何api更改可能影响了行为,因为现在,票证已移至过去/将来的日期

时间安排似乎与新前端的发布相吻合

这是我们正在使用的代码的片段

$tomorrow = Carbon::tomorrow()->midDay()->timestamp;
$this->client->put("projects/{$id[1]}/tasks/{$id[0]}", [
    'due_on' => $tomorrow,
    'start_on' => $tomorrow
]);

0 个答案:

没有答案