Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit d009a8f

Browse files
authored
fix: Paused scan test is now fixed (#1539)
Remove paused scan from failing test log. PR in test proxy now fixes this: https://togithub.com/googleapis/cloud-bigtable-clients-test/pull/211. Also adds some minor syntax updates to the test proxy server.
1 parent f1ad565 commit d009a8f

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

testproxy/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ function startServer(service) {
4949
grpc.ServerCredentials.createInsecure(),
5050
() => {
5151
console.log(`grpc server started on port: ${port}`);
52-
server.start();
5352
}
5453
);
5554
}
@@ -58,7 +57,7 @@ async function main() {
5857
const descriptor = await loadDescriptor();
5958
const {service} =
6059
descriptor.google.bigtable.testproxy.CloudBigtableV2TestProxy;
61-
await startServer(service);
60+
startServer(service);
6261
}
6362

6463
main();

testproxy/known_failures.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ TestReadRow_Retry_WithRoutingCookie\|
1111
TestReadRow_Retry_WithRetryInfo\|
1212
TestReadRows_ReverseScans_FeatureFlag_Enabled\|
1313
TestReadRows_NoRetry_OutOfOrderError_Reverse\|
14-
TestReadRows_Retry_PausedScan\|
1514
TestReadRows_Retry_LastScannedRow_Reverse\|
1615
TestReadRows_Retry_WithRoutingCookie\|
1716
TestReadRows_Retry_WithRoutingCookie_MultipleErrorResponses\|

0 commit comments

Comments
 (0)