Merge pull request #25719 from akhilnarang/fix-enqueue-method

fix(enqueue): pass the original method argument here
This commit is contained in:
Akhil Narang 2024-03-29 14:17:34 +05:30 committed by GitHub
commit 34f1b9cb65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -151,7 +151,7 @@ def enqueue(
queue_args = {
"site": frappe.local.site,
"user": frappe.session.user,
"method": method_name,
"method": method,
"event": event,
"job_name": job_name or method_name,
"is_async": is_async,