Merge pull request #23442 from prssanna/company-replace-abbr

fix: longer timeout for company replace abbreviation
This commit is contained in:
Deepesh Garg
2020-09-30 14:07:05 +05:30
committed by GitHub

View File

@@ -372,7 +372,7 @@ class Company(NestedSet):
@frappe.whitelist()
def enqueue_replace_abbr(company, old, new):
kwargs = dict(company=company, old=old, new=new)
kwargs = dict(queue='long', company=company, old=old, new=new)
frappe.enqueue('erpnext.setup.doctype.company.company.replace_abbr', **kwargs)