mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
fix: add multiSubnetFailover option for mssql (#10804)
This commit is contained in:
parent
d4f7b44fdf
commit
83e3a8a3db
@ -149,6 +149,8 @@ Based on [tedious](https://tediousjs.github.io/node-mssql/) MSSQL implementation
|
||||
|
||||
- `options.trustServerCertificate` - A boolean, controlling whether encryption occurs if there is no verifiable server certificate. (default: `false`)
|
||||
|
||||
- `options.multiSubnetFailover` - A boolean, controlling whether the driver should connect to all IPs returned from DNS in parallel. (default: `false`)
|
||||
|
||||
- `options.debug.packet` - A boolean, controlling whether `debug` events will be emitted with text describing packet
|
||||
details (default: `false`).
|
||||
|
||||
|
||||
@ -290,6 +290,12 @@ export interface SqlServerConnectionOptions
|
||||
* (default: false)
|
||||
*/
|
||||
readonly trustServerCertificate?: boolean
|
||||
|
||||
/**
|
||||
* A boolean, controlling whether the driver should connect to all IPs returned from DNS in parallel.
|
||||
* (default: false)
|
||||
*/
|
||||
readonly multiSubnetFailover?: boolean
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user