Skip to content

Commit

Permalink
Turn server streaming retries on
Browse files Browse the repository at this point in the history
Observation: Test doesn’t work
  • Loading branch information
danieljbruce committed Apr 25, 2024
1 parent f4136c1 commit 74a217f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/v2/bigtable_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export class BigtableClient {
readRows: new this._gaxModule.StreamDescriptor(
this._gaxModule.StreamType.SERVER_STREAMING,
!!opts.fallback,
/* gaxStreamingRetries: */ false
/* gaxStreamingRetries: */ true
),
sampleRowKeys: new this._gaxModule.StreamDescriptor(
this._gaxModule.StreamType.SERVER_STREAMING,
Expand Down
2 changes: 1 addition & 1 deletion system-test/read-rows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ describe('Bigtable/Table', () => {
});
});

describe('createReadStream using mock server', () => {
describe.only('createReadStream using mock server', () => {

Check failure on line 165 in system-test/read-rows.ts

View workflow job for this annotation

GitHub Actions / lint

'describe.only' is restricted from being used
let server: MockServer;
let service: MockService;
let bigtable = new Bigtable();
Expand Down

0 comments on commit 74a217f

Please sign in to comment.