[FIX] logging_json: deprecated method currentthread (#513)

Co-authored-by: augusto-weiss <awe@adhoc.com.ar>
This commit is contained in:
Henry Backman
2026-04-14 08:38:31 +02:00
committed by GitHub
co-authored by GitHub augusto-weiss
parent a10411107c
commit 95a2430568
+1 -1
View File
@@ -32,7 +32,7 @@ def is_true(strval):
class OdooJsonFormatter(jsonlogger.JsonFormatter):
def add_fields(self, log_record, record, message_dict):
record.pid = os.getpid()
record.dbname = getattr(threading.currentThread(), "dbname", "?")
record.dbname = getattr(threading.current_thread(), "dbname", "?")
record.request_id = getattr(threading.current_thread(), "request_uuid", None)
record.uid = getattr(threading.current_thread(), "uid", None)
_super = super()