Skip to content

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwarishubham635 committed Oct 23, 2024
1 parent 442bb60 commit d79b6bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions spec/unit/base/RequestClient.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ describe("RequestClient constructor", function () {
expect(requestClient.axios.defaults.httpsAgent.options.keepAliveMsecs).toBe(
undefined
);
expect(requestClient.axios.defaults.httpsAgent.options.maxSockets).toBe(
20
);
expect(requestClient.axios.defaults.httpsAgent.options.maxSockets).toBe(20);
expect(
requestClient.axios.defaults.httpsAgent.options.maxTotalSockets
).toBe(100);
Expand Down Expand Up @@ -156,9 +154,7 @@ describe("RequestClient constructor", function () {
expect(requestClient.axios.defaults.httpsAgent.options.keepAliveMsecs).toBe(
undefined
);
expect(requestClient.axios.defaults.httpsAgent.options.maxSockets).toBe(
20
);
expect(requestClient.axios.defaults.httpsAgent.options.maxSockets).toBe(20);
expect(
requestClient.axios.defaults.httpsAgent.options.maxTotalSockets
).toEqual(1500);
Expand Down
2 changes: 1 addition & 1 deletion src/base/BaseTwilio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ namespace Twilio {
this.keepAliveMsecs = this.opts.keepAliveMsecs;
this.maxSockets = this.opts.maxSockets;
this.maxTotalSockets = this.opts.maxTotalSockets;
this.maxFreeSockets= this.opts.maxFreeSockets;
this.maxFreeSockets = this.opts.maxFreeSockets;
this.scheduling = this.opts.scheduling;
this.ca = this.opts.ca;
this.autoRetry = this.opts.autoRetry || false;
Expand Down

0 comments on commit d79b6bc

Please sign in to comment.