fix(xen-api/putResource): compat with XS 6.5 and Node 12

This commit is contained in:
Julien Fontanet 2020-04-16 15:04:17 +02:00
parent 0847267069
commit f676145302
2 changed files with 8 additions and 0 deletions

View File

@ -13,9 +13,14 @@
> Users must be able to say: “I had this issue, happy to know it's fixed”
- [Backup] Fix TLS error (`unsupported protocol`) when XenServer <= 6.5 is used as target
### Released packages
> Packages will be released in the order they are here, therefore, they should
> be listed by inverse order of dependency.
>
> Rule of thumb: add packages on top.
- xen-api patch
- xo-server patch

View File

@ -425,6 +425,9 @@ export class Xapi extends EventEmitter {
// this is an inactivity timeout (unclear in Node doc)
timeout: this._httpInactivityTimeout,
// Support XS <= 6.5 with Node => 12
minVersion: 'TLSv1',
}
)