mirror of https://github.com/docker/cli.git
cli/command/image/build_session.go:133:45: getBuildSharedKey - result 1 (error) is always nil (unparam)
Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
This commit is contained in:
parent
28ac2f82c6
commit
75c60c1af7
|
@ -27,24 +27,21 @@ func isSessionSupported(dockerCli command.Cli, forStream bool) bool {
|
|||
}
|
||||
|
||||
func trySession(dockerCli command.Cli, contextDir string, forStream bool) (*session.Session, error) {
|
||||
var s *session.Session
|
||||
if isSessionSupported(dockerCli, forStream) {
|
||||
sharedKey, err := getBuildSharedKey(contextDir)
|
||||
if err != nil {
|
||||
return nil, errors.Wrap(err, "failed to get build shared key")
|
||||
if !isSessionSupported(dockerCli, forStream) {
|
||||
return nil, nil
|
||||
}
|
||||
s, err = session.NewSession(context.Background(), filepath.Base(contextDir), sharedKey)
|
||||
sharedKey := getBuildSharedKey(contextDir)
|
||||
s, err := session.NewSession(context.Background(), filepath.Base(contextDir), sharedKey)
|
||||
if err != nil {
|
||||
return nil, errors.Wrap(err, "failed to create session")
|
||||
}
|
||||
}
|
||||
return s, nil
|
||||
}
|
||||
|
||||
func getBuildSharedKey(dir string) (string, error) {
|
||||
func getBuildSharedKey(dir string) string {
|
||||
// build session is hash of build dir with node based randomness
|
||||
s := sha256.Sum256([]byte(fmt.Sprintf("%s:%s", tryNodeIdentifier(), dir)))
|
||||
return hex.EncodeToString(s[:]), nil
|
||||
return hex.EncodeToString(s[:])
|
||||
}
|
||||
|
||||
func tryNodeIdentifier() string {
|
||||
|
|
Loading…
Reference in New Issue