Merge pull request #2197 from saurabh6790/integration_fix

[fix] Scheduler fixes for Integration Services
This commit is contained in:
Saurabh 2016-10-25 13:04:00 +05:30 committed by GitHub
commit dc397b5949
2 changed files with 3 additions and 3 deletions

View file

@ -17,10 +17,10 @@ ignore_list = [".DS_Store"]
class DropboxSettings(IntegrationService):
scheduler_events = {
"daily_long": [
"frappe.integrations.dropbox_integration.take_backups_daily"
"frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backups_daily"
],
"weekly_long": [
"frappe.integrations.dropbox_integration.take_backups_weekly"
"frappe.integrations.doctype.dropbox_settings.dropbox_settings.take_backups_weekly"
]
}

View file

@ -64,7 +64,7 @@ class RazorpaySettings(IntegrationService):
scheduler_events = {
"all": [
"frappe.integrations.razorpay.capture_payment"
"frappe.integrations.doctype.razorpay_settings.razorpay_settings.capture_payment"
]
}