Skip to content

Commit

Permalink
⚡ when high concurrency occurs, the connection is full and the connec…
Browse files Browse the repository at this point in the history
…tion is rejected.

Signed-off-by: cuisongliu <cuisongliu@qq.com>
  • Loading branch information
cuisongliu committed Jul 30, 2024
1 parent 7d3be80 commit f9acbab
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions api/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ type Client interface {
Do(context.Context, *http.Request) (*http.Response, []byte, error)
}

type CloseIdler interface {
CloseIdleConnections()
}

// NewClient returns a new Client.
//
// It is safe to use the returned Client from multiple goroutines.
Expand Down Expand Up @@ -118,6 +122,10 @@ func (c *httpClient) URL(ep string, args map[string]string) *url.URL {
return &u
}

func (c *httpClient) CloseIdleConnections() {
c.client.CloseIdleConnections()
}

func (c *httpClient) Do(ctx context.Context, req *http.Request) (*http.Response, []byte, error) {
if ctx != nil {
req = req.WithContext(ctx)
Expand Down

0 comments on commit f9acbab

Please sign in to comment.