Skip to content

Commit

Permalink
remove static
Browse files Browse the repository at this point in the history
  • Loading branch information
addjuarez committed Nov 14, 2023
1 parent 8031e8f commit eb8bdae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public class WorkflowRuntimeBuilder {
private static volatile WorkflowRuntime instance;
private DurableTaskGrpcWorkerBuilder builder;
private static final Logger LOGGER = LoggerFactory.getLogger(WorkflowRuntimeBuilder.class);
private static volatile Set<String> activity_Set = new HashSet<String>();
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>();


public WorkflowRuntimeBuilder() {
Expand Down

0 comments on commit eb8bdae

Please sign in to comment.