File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
harness/java/io/temporal/sdkfeatures Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -96,13 +96,13 @@ BufferedWriter createSummaryServerWriter() {
9696 private String httpProxyUrl ;
9797
9898 @ Option (
99- names = "--proxy-control-uri" ,
100- description = "The URL of temporal-features-test-proxy (optional)" )
99+ names = "--proxy-control-uri" ,
100+ description = "The URL of temporal-features-test-proxy (optional)" )
101101 private String proxyControlUri ;
102102
103103 @ Option (
104- names = "--proxy-listen-host-port" ,
105- description = "The host:port of the server, bypassing the temporal-features-test-proxy" )
104+ names = "--proxy-listen-host-port" ,
105+ description = "The host:port of the server, bypassing the temporal-features-test-proxy" )
106106 private String proxyListenHotsPort ;
107107
108108 @ Parameters (description = "Features as dir + ':' + task queue" )
Original file line number Diff line number Diff line change 1616import io .temporal .api .workflow .v1 .WorkflowExecutionInfo ;
1717import io .temporal .api .workflowservice .v1 .DescribeWorkflowExecutionRequest ;
1818import io .temporal .client .*;
19- import io .temporal .internal .client .WorkflowClientHelper ;
2019import io .temporal .common .WorkflowExecutionHistory ;
20+ import io .temporal .internal .client .WorkflowClientHelper ;
2121import io .temporal .serviceclient .WorkflowServiceStubs ;
2222import io .temporal .serviceclient .WorkflowServiceStubsOptions ;
2323import io .temporal .worker .Worker ;
@@ -84,7 +84,9 @@ public static class Config {
8484 service = WorkflowServiceStubs .newConnectedServiceStubs (serviceOptions , Duration .ofSeconds (10 ));
8585 // Shutdown service on failure
8686 try {
87- directService = WorkflowServiceStubs .newConnectedServiceStubs (directServiceOptions , Duration .ofSeconds (10 ));
87+ directService =
88+ WorkflowServiceStubs .newConnectedServiceStubs (
89+ directServiceOptions , Duration .ofSeconds (10 ));
8890 try {
8991 // Build client
9092 var clientBuild = WorkflowClientOptions .newBuilder ().setNamespace (config .namespace );
You can’t perform that action at this time.
0 commit comments