File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/main/java/com/uber/cadence/client Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ public static final class Builder {
59
59
private DataConverter dataConverter = JsonDataConverter .getInstance ();
60
60
private WorkflowClientInterceptor [] interceptors = EMPTY_INTERCEPTOR_ARRAY ;
61
61
private Scope metricsScope = NoopScope .getInstance ();
62
- private String identity = ManagementFactory .getRuntimeMXBean ().getName ();;
62
+ private String identity = ManagementFactory .getRuntimeMXBean ().getName ();
63
63
private List <ContextPropagator > contextPropagators = EMPTY_CONTEXT_PROPAGATORS ;
64
64
private QueryRejectCondition queryRejectCondition ;
65
65
@@ -71,6 +71,7 @@ private Builder(WorkflowClientOptions options) {
71
71
interceptors = options .getInterceptors ();
72
72
metricsScope = options .getMetricsScope ();
73
73
identity = options .getIdentity ();
74
+ contextPropagators = options .getContextPropagators ();
74
75
queryRejectCondition = options .getQueryRejectCondition ();
75
76
}
76
77
You can’t perform that action at this time.
0 commit comments