when i add users,it shows Throttled message. i cannot add new uses.
Hello, @susan
Could you provide further details on this topic along with screenshots for a clearer understanding?
@susan
The behavior you’re observing might be originating from a Server Script or Client Script associated with the User Doctype. Could you please check there?
only wait a few minutes .now i add users ,it works . thank you very much
This code is causing an issue.
def throttle_user_creation():
if frappe.flags.in_import:
return
if frappe.db.get_creation_count("User", 60) > frappe.local.conf.get("throttle_user_limit", 60):
frappe.throw(_("Throttled"))
thank you