We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c533c5 commit ef4aedbCopy full SHA for ef4aedb
CHANGELOG.md
@@ -5,6 +5,9 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/)
5
6
## [Unreleased]
7
8
+### Fixed
9
+- client timeout when importing large images
10
+
11
## [1.5.0] - 2022-06-09
12
13
### Added
internal/driver/driver.go
@@ -65,6 +65,8 @@ type (
65
66
func NewDriver(c *DriverConfig) Driver {
67
client := client.New(c.Username, c.Password)
68
+ // A Timeout of zero means no timeout.
69
+ client.SetTimeout(0)
70
svc := service.New(client)
71
return &driver{
72
svc: svc,
0 commit comments