Skip to content
This repository has been archived by the owner on Aug 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #172 from joshwget/executor-project-parse-once
Browse files Browse the repository at this point in the history
Only parse project once during executor upgrade
  • Loading branch information
ibuildthecloud authored Jun 23, 2016
2 parents 652b60b + 05b6677 commit fa19d97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executor/handlers/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func constructProjectUpgrade(logger *logrus.Entry, env *client.Environment, upgr
}

p.AddListener(NewListenLogger(logger, p))
return p, variables, p.Parse()
return p, variables, nil
}

func constructProject(logger *logrus.Entry, env *client.Environment, url, accessKey, secretKey string) (*rancher.Context, *project.Project, error) {
Expand Down

0 comments on commit fa19d97

Please sign in to comment.