Skip to content

Commit

Permalink
Use client without keep alive for service polling
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucian Jones committed Apr 11, 2022
1 parent 3ff9975 commit 3bb4c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion introspection.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type Service struct {
func NewService(serviceURL string) *Service {
s := &Service{
ServiceURL: serviceURL,
client: NewClient(WithUserAgent(GenerateUserAgent("update"))),
client: NewClientWithoutKeepAlive(WithUserAgent(GenerateUserAgent("update"))),
}
return s
}
Expand Down

0 comments on commit 3bb4c9d

Please sign in to comment.