Skip to content

Commit

Permalink
docs(http): Clarify the unit of readTimeout and connectTimeout (#7230)
Browse files Browse the repository at this point in the history
  • Loading branch information
markemer authored Feb 5, 2024
1 parent b2f658c commit 0b93135
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/core-plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,12 @@ export interface HttpOptions {
data?: any;
headers?: HttpHeaders;
/**
* How long to wait to read additional data. Resets each time new
* data is received
* How long to wait to read additional data in milliseconds.
* Resets each time new data is received.
*/
readTimeout?: number;
/**
* How long to wait for the initial connection.
* How long to wait for the initial connection in milliseconds.
*/
connectTimeout?: number;
/**
Expand Down

0 comments on commit 0b93135

Please sign in to comment.