Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/nodejs-spanner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.9.0
Choose a base ref
...
head repository: googleapis/nodejs-spanner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.9.1
Choose a head ref
  • 2 commits
  • 7 files changed
  • 2 contributors

Commits on Jun 26, 2024

  1. fix: Retry with timeout (#2071)

    Use `gaxOptions.timeout` during retry in streaming calls. Earlier the timeout value was only used for a single RPC not for the whole operation including retries. Now if RPC returns `Unavailable` error and the timeout value has been reached, library will throw an Deadline exceeded error.
    
    ```
    const query = {
            sql: 'Select 1',
            gaxOptions: {timeout: 500}
        }
    const [rows] = await database.run(query);
    ```
    surbhigarg92 authored Jun 26, 2024
    Configuration menu
    Copy the full SHA
    a943257 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    30151ca View commit details
    Browse the repository at this point in the history
Loading