Skip to content

Commit

Permalink
Add ability to change port on builder (#1738)
Browse files Browse the repository at this point in the history
  • Loading branch information
jguerra authored and argha-c committed Sep 9, 2024
1 parent be5b922 commit e1d68b9
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ public HttpRequestBuilder withUri(String uri) {
return this;
}

public HttpRequestBuilder withPort(int port) {
this.port = port;
return this;
}

/**
* Used to build a request with overridden values
*
Expand Down

0 comments on commit e1d68b9

Please sign in to comment.