fix: typo on enqueue args

The deduplicate argument was missing the 'l'.
This commit is contained in:
Kevin Shenk 2023-07-01 13:56:50 -04:00 committed by GitHub
parent ab42e58dcf
commit 70da4ba51d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -149,7 +149,7 @@ def flush(from_test=False):
now=from_test,
job_id=f"email_queue_sendmail_{row.name}",
queue="short",
dedupicate=True,
deduplicate=True,
)
except Exception:
frappe.get_doc("Email Queue", row.name).log_error()