[fix] pass_does_not_exist_error
This commit is contained in:
parent
76a57515a9
commit
74bc80d982
3 changed files with 10 additions and 3 deletions
|
|
@ -305,3 +305,6 @@ a.close:focus {
|
|||
.layout-side-section .module-sidebar-nav {
|
||||
margin-top: 15px;
|
||||
}
|
||||
.assignment-row {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,14 +7,14 @@ html {
|
|||
|
||||
body {
|
||||
height: 100%;
|
||||
// The html and body elements cannot have any padding or margin.
|
||||
// The html and body elements cannot have any padding or margin.
|
||||
margin: 0px;
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
overflow-x: hidden; //Prevent scroll on narrow devices
|
||||
overflow-x: hidden; //Prevent scroll on narrow devices
|
||||
}
|
||||
|
||||
.hide-form-sidebar {
|
||||
|
|
@ -393,3 +393,7 @@ a.close {
|
|||
.layout-side-section .module-sidebar-nav {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.assignment-row {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ def start_scheduler():
|
|||
'''Run enqueue_events_for_all_sites every 2 minutes (default).
|
||||
Specify scheduler_interval in seconds in common_site_config.json'''
|
||||
|
||||
interval = frappe.get_conf().scheduler_interval or 120
|
||||
interval = frappe.get_conf().scheduler_interval or 240
|
||||
schedule.every(interval).seconds.do(enqueue_events_for_all_sites)
|
||||
|
||||
while True:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue