Skip to content

Commit

Permalink
fix based on review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ElizabethOkerio committed Jun 12, 2020
1 parent 72c48fa commit cb06e5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ public override int Timeout
/// </summary>
public override int ReadWriteTimeout
{
get { return this.httpRequest.Timeout; }
set { this.httpRequest.Timeout = (int)Math.Min(Int32.MaxValue, new TimeSpan(0, 0, value).TotalMilliseconds); }
get { return this.httpRequest.ReadWriteTimeout; }
set { this.httpRequest.ReadWriteTimeout = (int)Math.Min(Int32.MaxValue, new TimeSpan(0, 0, value).TotalMilliseconds); }
}

/// <summary>
Expand Down

0 comments on commit cb06e5a

Please sign in to comment.