golang-github-hashicorp-go-cleanhttp-dev binary package in Ubuntu Focal amd64

 The Go standard library contains a default http.Client called
 http.DefaultClient. It is a common idiom in Go code to start with
 http.DefaultClient and tweak it as necessary, and in fact, this is encouraged;
 from the http package documentation:
 .
   The Client's Transport typically has internal state (cached TCP connections),
   so Clients should be reused instead of created as needed. Clients are safe
   for concurrent use by multiple goroutines.
 .
 Unfortunately, this is a shared value, and it is not uncommon for libraries to
 assume that they are free to modify it at will. With enough dependencies, it
 can be very easy to encounter strange problems and race conditions due to
 manipulation of this shared value across libraries and goroutines (clients are
 safe for concurrent use, but writing values to the client struct itself is not
 protected).
 .
 Making things worse is the fact that a bare http.Client will use a default
 http.Transport called http.DefaultTransport, which is another global value that
 behaves the same way. So it is not simply enough to replace http.DefaultClient
 with &http.Client{}.
 .
 This repository provides some simple functions to get a "clean" http.Client --
 one that uses the same default values as the Go standard library, but returns a
 client that does not share any state with other clients.
 .
 This package contains the source.

Publishing history

Date Status Target Pocket Component Section Priority Phased updates Version
  2019-10-30 14:23:19 UTC Published Ubuntu Focal amd64 release universe devel Extra 0.5.1-1
  • Published
  • Copied from ubuntu focal-proposed amd64 in Primary Archive for Ubuntu
  Deleted Ubuntu Focal amd64 proposed universe devel Extra 0.5.1-1
  • Removal requested .
  • Deleted by Ubuntu Archive Robot

    moved to Release

  • Published
  2019-10-30 14:23:30 UTC Superseded Ubuntu Focal amd64 release universe devel Extra 0.5.0-1.1
  • Removed from disk .
  • Removal requested .
  • Superseded by amd64 build of golang-github-hashicorp-go-cleanhttp 0.5.1-1 in ubuntu focal PROPOSED
  • Published
  • Copied from ubuntu eoan-proposed amd64 in Primary Archive for Ubuntu