Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import org.slf4j.LoggerFactory;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
Expand Down Expand Up @@ -51,7 +50,6 @@ public class WorkflowExecutionService {
private final TaskExecutionService taskExecutionService;
private final WorkflowMapper workflowMapper;

@Transactional
@Async("traceExecutor")
public void executeWorkflow(Long workflowId, RequestContext context) {
WorkflowRun workflowRun = WorkflowRun.start(workflowId, context.getTraceId());
Expand Down
Loading