mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* update fsouza to v1.2.0 * unwind timeouts on docker previously, we were setting our own transport on the docker client, but this does not work anymore as fsouza now needs to call this: https://github.com/fsouza/go-dockerclient/blob/master/client_unix.go which makes a platform dependent client. fsouza now also appears to make a transport that modifies the default http client with some saner values for things like max idle conns per host (they get reaped if idle 90s): https://github.com/fsouza/go-dockerclient/blob/master/client.go#L1059 -- these settings are sane and were why we were doing this to begin with. additionally, have removed our setting of timeout on the docker client for 2 minutes. this is a leftover relic of a bygone era from a time when we relied on these timeouts to timeout higher level things, which now we're properly timing out in the enclosing methods. so, they gone, this makes the docker client a little less whacky now.