fix: correct redis set when update node execution && fix openAPI run … (#639)
This commit is contained in:
@@ -303,7 +303,7 @@ func (e *executeHistoryStoreImpl) UpdateNodeExecutionStreaming(ctx context.Conte
|
||||
|
||||
key := fmt.Sprintf(nodeExecOutputKey, execution.ID)
|
||||
|
||||
if err := e.redis.Set(ctx, key, execution.Output, nodeExecDataExpiry).Err(); err != nil {
|
||||
if err := e.redis.Set(ctx, key, *execution.Output, nodeExecDataExpiry).Err(); err != nil {
|
||||
return vo.WrapError(errno.ErrRedisError, err)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user