Skip to content

Commit 5f207d4

Browse files
committed
hotfix to allow tests to run without blocking testers
1 parent 438cde3 commit 5f207d4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

observability-test/spanner.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,8 @@ describe('EndToEnd', () => {
173173
await tracerProvider.shutdown();
174174
traceExporter.reset();
175175
spannerMock.resetRequests();
176-
spanner.close();
176+
// Hot-fix, do not close spanner.
177+
// spanner.close();
177178
server.tryShutdown(() => {});
178179
});
179180

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"system-test": "mocha build/system-test --timeout 1600000",
3636
"observability-test": "mocha build/observability-test --timeout 1600000",
3737
"cleanup": "mocha scripts/cleanup.js --timeout 30000",
38-
"test": "mocha build/test build/test/common build/observability-test --trace-warnings --timeout 1600000",
38+
"test": "mocha build/test build/test/common build/observability-test",
3939
"ycsb": "node ./benchmark/ycsb.js run -P ./benchmark/workloada -p table=usertable -p cloudspanner.instance=ycsb-instance -p operationcount=100 -p cloudspanner.database=ycsb",
4040
"fix": "gts fix",
4141
"clean": "gts clean",

0 commit comments

Comments
 (0)