我有一个 Drupal 6 站点,并且我有一个自定义模块,可以在运行 cron 时在某些节点上执行一些维护操作。
我的代码非常简单:
function mymodule_cron() {
// get all the nodes that need maintenance
$result = db_query("SELECT * FROM {mymodule_nodes}");
while ($row = db_fetch_object($result)) {
// load the node
$node = node_load($row->nid); // Causes Drush Error
// Perform Maintenance Tasks
}
}
问题是,当我使用 drush core-cron 运行 cron 时,它失败并显示:“drush command 由于不可恢复的错误而异常终止”
使用一些基本的调试技巧,我将问题追溯到 node_load 调用。为什么以这种方式在 cron 中调用 node_load 会导致 drush core-cron 失败?
-sh-4.1$ drush status
Drupal version : 6.17
Database : Connected
Drupal bootstrap : Successful
Drush version : 4.5
Drush configuration :
Drush alias files :
-sh-4.1$ php -v
PHP 5.3.6 (cli) (built: Mar 17 2011 20:56:13)
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2011 Zend Technologies
-sh-4.1$ httpd -v
Server version: Apache/2.2.17 (Unix)
Server built: Oct 27 2010 10:04:21
从 Web 界面运行 Cron 作业可以正常工作而不会出错。这个问题似乎与 drush 相关。
我检查了看门狗,每当我尝试从 drush 运行它时,看门狗都会在 cron 类型下显示一条新消息,说“Cron 运行超出了时间限制,并且已中止”。奇怪的是,从 CLI 中按回车后,我几乎立即收到错误消息,而在我当前的实现中,我只是尝试调试 node_load,所以我的维护任务被注释掉了。我只是想将列表中第一个的节点标题转储到屏幕上,然后返回 true,所以它应该只循环一次。
之所以会出现这样的问题,是因为我们能够让 cron 从 crond 运行的唯一方法是使用 drush。但是如果 drush 不能执行这个命令,那我就陷入了僵局。
即使使用 Drush 5 也不能解决问题。