Skip to content

Commit

Permalink
mention initial retry interval in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
AkuSilvenius committed Jul 8, 2024
1 parent b8e39d0 commit be32ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/postgres/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
| `x-statement-timeout` | `StatementTimeout` | Abort any statement that takes more than the specified number of milliseconds |
| `x-multi-statement` | `MultiStatementEnabled` | Enable multi-statement execution (default: false) |
| `x-multi-statement-max-size` | `MultiStatementMaxSize` | Maximum size of single statement in bytes (default: 10MB) |
| `x-lock-retry-max-interval` | `Locking` | When acquiring a lock fails, retries are used with an exponential backoff. This parameter specifies what is the maximum interval between retries in milliseconds (default: 1000ms) |
| `x-lock-retry-max-interval` | `Locking` | When acquiring a lock fails, retries are used with an exponential backoff. This parameter specifies what is the maximum interval between retries in milliseconds (default: 1000ms). Values below the [initial retry interval](./postgres.go#L39) (100ms) will be ignored. |
| `dbname` | `DatabaseName` | The name of the database to connect to |
| `search_path` | | This variable specifies the order in which schemas are searched when an object is referenced by a simple name with no schema specified. |
| `user` | | The user to sign in as |
Expand Down

0 comments on commit be32ada

Please sign in to comment.