Skip to content

Commit d72526d

Browse files
Run formatter
1 parent 95211b4 commit d72526d

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

harness/java/io/temporal/sdkfeatures/Main.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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")

harness/java/io/temporal/sdkfeatures/Runner.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
import io.temporal.api.workflow.v1.WorkflowExecutionInfo;
1717
import io.temporal.api.workflowservice.v1.DescribeWorkflowExecutionRequest;
1818
import io.temporal.client.*;
19-
import io.temporal.internal.client.WorkflowClientHelper;
2019
import io.temporal.common.WorkflowExecutionHistory;
20+
import io.temporal.internal.client.WorkflowClientHelper;
2121
import io.temporal.serviceclient.WorkflowServiceStubs;
2222
import io.temporal.serviceclient.WorkflowServiceStubsOptions;
2323
import 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);

0 commit comments

Comments
 (0)