mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-04 04:43:09 +00:00 
			
		
		
		
	fix(workflow_cycle_manage): Handle special values in the process_data. (#11253)
Signed-off-by: -LAN- <laipz8200@outlook.com>
This commit is contained in:
		
							parent
							
								
									dbc10e0feb
								
							
						
					
					
						commit
						3c8efe7c0a
					
				@ -340,7 +340,7 @@ class WorkflowCycleManage:
 | 
			
		||||
                WorkflowNodeExecution.status: WorkflowNodeExecutionStatus.FAILED.value,
 | 
			
		||||
                WorkflowNodeExecution.error: event.error,
 | 
			
		||||
                WorkflowNodeExecution.inputs: json.dumps(inputs) if inputs else None,
 | 
			
		||||
                WorkflowNodeExecution.process_data: json.dumps(event.process_data) if event.process_data else None,
 | 
			
		||||
                WorkflowNodeExecution.process_data: json.dumps(process_data) if process_data else None,
 | 
			
		||||
                WorkflowNodeExecution.outputs: json.dumps(outputs) if outputs else None,
 | 
			
		||||
                WorkflowNodeExecution.finished_at: finished_at,
 | 
			
		||||
                WorkflowNodeExecution.elapsed_time: elapsed_time,
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user