Skip to content

Commit a7ea32c

Browse files
committed
remove incorrect solution attempt, also want to ensure tags are pushed
1 parent a9917fd commit a7ea32c

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

temporal-spring-boot-autoconfigure/src/test/java/io/temporal/spring/boot/autoconfigure/WorkerVersioningTest.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
import io.temporal.api.common.v1.WorkflowExecution;
66
import io.temporal.api.enums.v1.EventType;
77
import io.temporal.api.enums.v1.VersioningBehavior;
8-
import io.temporal.api.workflowservice.v1.DescribeNamespaceRequest;
9-
import io.temporal.api.workflowservice.v1.RegisterNamespaceRequest;
108
import io.temporal.api.workflowservice.v1.SetWorkerDeploymentCurrentVersionRequest;
119
import io.temporal.client.WorkflowClient;
1210
import io.temporal.client.WorkflowOptions;
@@ -49,20 +47,6 @@ void checkDockerServiceAndNamespace() {
4947
Assumptions.assumeTrue(
5048
(useDocker != null && useDocker.equalsIgnoreCase("true")),
5149
"Skipping tests because USE_DOCKER_SERVICE is not set");
52-
53-
try {
54-
workflowClient
55-
.getWorkflowServiceStubs()
56-
.blockingStub()
57-
.describeNamespace(
58-
DescribeNamespaceRequest.newBuilder().setNamespace("UnitTest").build());
59-
} catch (Exception e) {
60-
workflowClient
61-
.getWorkflowServiceStubs()
62-
.blockingStub()
63-
.registerNamespace(
64-
RegisterNamespaceRequest.newBuilder().setNamespace("UnitTest").build());
65-
}
6650
}
6751

6852
// @BeforeEach

0 commit comments

Comments
 (0)