ড্রুপাল On-তে, অন্য একটি বিকল্প হিসাবে,
এর মাধ্যমে drush cron
আমি পেয়ে ছিল,
WD cron: Attempting to re-run cron while it is already running. [warning]
Cron run failed. [error]
এটি উন্নয়নের পরিবেশে ছিল এবং ঘটেছিল কারণ পূর্ববর্তী ক্রোন চলছিল এবং এতে বাধা পেয়েছিল।
উপর includes/common.inc
, লাইন 5413, বা কাছাকাছি সময়ে, আপনি এই ব্লক খুঁজে পাবেন, https://cgit.drupalcode.org/drupal/tree/includes/common.inc?h=7.x#n5413
// Try to acquire cron lock.
if (!lock_acquire('cron', 240.0)) {
// Cron is still running normally.
watchdog('cron', 'Attempting to re-run cron while it is already running.', array(), WATCHDOG_WARNING);
}
if
একটি দিয়ে পরিবর্তন করুন && FALSE
,
// Try to acquire cron lock.
if (!lock_acquire('cron', 240.0) && FALSE) {
// Cron is still running normally.
watchdog('cron', 'Attempting to re-run cron while it is already running.', array(), WATCHDOG_WARNING);
}
এবং ক্রোন পুনরায় চালু করুন। এটি এটি চালানোর অনুমতি দেবে।
দয়া করে এটি স্থাপন করুন এবং এটি শেষ হওয়ার পরে এটি আবার ফিরিয়ে দিন। এটি ডিবাগিংয়ে সহায়তা করে।