Skip to content

Commit

Permalink
fix: server-client not setting timeout parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
manchuck committed Aug 31, 2023
1 parent e2a2698 commit b9efd8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server-client/lib/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export abstract class Client {
meetingsHost: options?.meetingsHost || 'https://api-eu.vonage.com',
proactiveHost: options?.proactiveHost || 'https://api-eu.vonage.com',
responseType: options?.responseType || ResponseTypes.json,
timeout: null,
timeout: options?.timeout || null,
} as ConfigParams;
}

Expand Down

0 comments on commit b9efd8f

Please sign in to comment.