Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,7 @@
+ "For now this test can only be exercised mannually.")
public class SpannerChangeStreamPlacementTableIT {

// TODO change to spanner prod host once ready.
private static final String host = "https://staging-wrenchworks.sandbox.googleapis.com";

@ClassRule
public static final IntegrationTestEnv ENV =
new IntegrationTestEnv(
/*isPostgres=*/ false,
/*isPlacementTableBasedChangeStream=*/ true,
/*host=*/ Optional.of(host));
@ClassRule public static final IntegrationTestEnv ENV = new IntegrationTestEnv();

@Rule public final transient TestPipeline pipeline = TestPipeline.create();

Expand Down Expand Up @@ -149,8 +141,7 @@ public void testReadSpannerChangeStreamImpl(TestPipeline testPipeline, String ro
SpannerConfig.create()
.withProjectId(projectId)
.withInstanceId(instanceId)
.withDatabaseId(databaseId)
.withHost(StaticValueProvider.of(host));
.withDatabaseId(databaseId);
if (role != null) {
spannerConfig = spannerConfig.withDatabaseRole(StaticValueProvider.of(role));
}
Expand Down Expand Up @@ -210,8 +201,7 @@ public void testReadSpannerChangeStreamFilteredByTransactionTag() {
SpannerConfig.create()
.withProjectId(projectId)
.withInstanceId(instanceId)
.withDatabaseId(databaseId)
.withHost(StaticValueProvider.of(host));
.withDatabaseId(databaseId);

// Filter records to only those from transactions with tag "app=beam;action=update"
final PCollection<String> tokens =
Expand Down
Loading