chore: enable followRedirects for NodeWebSocket (#7555)

This commit is contained in:
Theodore Messinezis 2021-09-10 19:34:25 +01:00 committed by GitHub
parent 10e847404e
commit 5735f31d78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,6 +20,7 @@ export class NodeWebSocketTransport implements ConnectionTransport {
static create(url: string): Promise<NodeWebSocketTransport> {
return new Promise((resolve, reject) => {
const ws = new NodeWebSocket(url, [], {
followRedirects: true,
perMessageDeflate: false,
maxPayload: 256 * 1024 * 1024, // 256Mb
});