mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
refactor(ops): Optimize the iteration for filter_none_values and use logging.error to record logs when an exception occurs (#8461)
This commit is contained in:
parent
1a8dcae10e
commit
831c5a93af
|
@ -21,8 +21,7 @@ class BaseTraceInfo(BaseModel):
|
|||
return None
|
||||
if isinstance(v, str | dict | list):
|
||||
return v
|
||||
else:
|
||||
return ""
|
||||
return ""
|
||||
|
||||
|
||||
class WorkflowTraceInfo(BaseTraceInfo):
|
||||
|
|
|
@ -708,7 +708,7 @@ class TraceQueueManager:
|
|||
trace_task.app_id = self.app_id
|
||||
trace_manager_queue.put(trace_task)
|
||||
except Exception as e:
|
||||
logging.debug(f"Error adding trace task: {e}")
|
||||
logging.error(f"Error adding trace task: {e}")
|
||||
finally:
|
||||
self.start_timer()
|
||||
|
||||
|
@ -727,7 +727,7 @@ class TraceQueueManager:
|
|||
if tasks:
|
||||
self.send_to_celery(tasks)
|
||||
except Exception as e:
|
||||
logging.debug(f"Error processing trace tasks: {e}")
|
||||
logging.error(f"Error processing trace tasks: {e}")
|
||||
|
||||
def start_timer(self):
|
||||
global trace_manager_timer
|
||||
|
|
|
@ -6,12 +6,15 @@ from models.model import Message
|
|||
|
||||
|
||||
def filter_none_values(data: dict):
|
||||
new_data = {}
|
||||
for key, value in data.items():
|
||||
if value is None:
|
||||
continue
|
||||
if isinstance(value, datetime):
|
||||
data[key] = value.isoformat()
|
||||
return {key: value for key, value in data.items() if value is not None}
|
||||
new_data[key] = value.isoformat()
|
||||
else:
|
||||
new_data[key] = value
|
||||
return new_data
|
||||
|
||||
|
||||
def get_message_data(message_id):
|
||||
|
|
Loading…
Reference in New Issue
Block a user