I have installed a fresh ERPNext and everything goes well. However, every hour I’ve got an Error Log of frappe.deferred_insert.save_to_db
I searched around but could not find any solution
Please let check for me
Thanks
I have installed a fresh ERPNext and everything goes well. However, every hour I’ve got an Error Log of frappe.deferred_insert.save_to_db
I searched around but could not find any solution
Please let check for me
Thanks
Getting the same issue
I’m experiencing the same issue. I just implemented a temporary fix to see if this works…
I’ve changed line 20 in File “/home/frappe/frappe-bench/apps/frappe/frappe/deferred_insert.py”
from
records = json.loads(records)
to
records = json.loads(records.decode(‘utf-8’))
which should fix this issue. I will update when the process runs again.
Running the following:
ERPNext: v12.x.x-develop () (develop)
Frappe Framework: v12.x.x-develop () (develop)