fix: Do not show scheduler inactive popup in developer mode
This commit is contained in:
parent
b231020611
commit
f7d3340bb9
1 changed files with 1 additions and 1 deletions
|
|
@ -135,7 +135,7 @@ frappe.Application = Class.extend({
|
|||
frappe.call({
|
||||
method: 'frappe.core.page.background_jobs.background_jobs.get_scheduler_status',
|
||||
callback: function(r) {
|
||||
if (r.message[0] == __("Inactive")) {
|
||||
if (r.message[0] == __("Inactive") && frappe.boot.developer_mode!=1) {
|
||||
frappe.msgprint({
|
||||
title: __("Scheduler Inactive"),
|
||||
indicator: "red",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue