diff options
author | Jessie Frazelle <jfrazelle@users.noreply.github.com> | 2015-08-12 20:19:06 -0700 |
---|---|---|
committer | Jessie Frazelle <jfrazelle@users.noreply.github.com> | 2015-08-12 20:19:06 -0700 |
commit | b66e5ef20824ecef46d657833db409a035b65306 (patch) | |
tree | 141c1eb26f46b3bb114f28b561a34fe773586d59 /graph/push.go | |
parent | b0e0dbb33b4a188a04cbef8dbc405ea86dfd6cd5 (diff) | |
parent | d12ea79c9de6d144ce6bc7ccfe41c507cca6fd35 (diff) | |
download | docker-release.tar.gz |
Merge pull request #15544 from icecrime/bump_1.8.1release
Bump 1.8.1
Diffstat (limited to 'graph/push.go')
-rw-r--r-- | graph/push.go | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/graph/push.go b/graph/push.go index fcb7e121d9..dba8bb963a 100644 --- a/graph/push.go +++ b/graph/push.go @@ -29,13 +29,12 @@ func (s *TagStore) NewPusher(endpoint registry.APIEndpoint, localRepo Repository switch endpoint.Version { case registry.APIVersion2: return &v2Pusher{ - TagStore: s, - endpoint: endpoint, - localRepo: localRepo, - repoInfo: repoInfo, - config: imagePushConfig, - sf: sf, - layersSeen: make(map[string]bool), + TagStore: s, + endpoint: endpoint, + localRepo: localRepo, + repoInfo: repoInfo, + config: imagePushConfig, + sf: sf, }, nil case registry.APIVersion1: return &v1Pusher{ |