We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d19eb4 commit 0beefe8Copy full SHA for 0beefe8
sdk-workflows/src/main/java/io/dapr/workflows/runtime/WorkflowRuntimeBuilder.java
@@ -26,8 +26,8 @@ public class WorkflowRuntimeBuilder {
26
private static volatile WorkflowRuntime instance;
27
private DurableTaskGrpcWorkerBuilder builder;
28
private static final Logger LOGGER = LoggerFactory.getLogger(WorkflowRuntimeBuilder.class);
29
- private static volatile Set<String> activity_Set = new HashSet<String>();
30
- private static volatile Set<String> workflow_Set = new HashSet<String>();
+ private volatile Set<String> activity_Set = new HashSet<String>();
+ private volatile Set<String> workflow_Set = new HashSet<String>();
31
32
33
public WorkflowRuntimeBuilder() {
0 commit comments