fix(recorder): Publish update only to Administrator
This commit is contained in:
parent
01fdb6a241
commit
c86e1de38a
1 changed files with 3 additions and 1 deletions
|
|
@ -101,7 +101,9 @@ class Recorder:
|
|||
}
|
||||
frappe.cache().hset(RECORDER_REQUEST_SPARSE_HASH, self.uuid, request_data)
|
||||
frappe.publish_realtime(
|
||||
event="recorder-dump-event", message=json.dumps(request_data, default=str)
|
||||
event="recorder-dump-event",
|
||||
message=json.dumps(request_data, default=str),
|
||||
user="Administrator",
|
||||
)
|
||||
|
||||
self.mark_duplicates()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue