Skip to content

Commit

Permalink
Merge pull request #1232 from convox/20160915
Browse files Browse the repository at this point in the history
[RELEASE] 20160915
  • Loading branch information
ddollar committed Sep 16, 2016
2 parents b7220de + c59efc5 commit ba9ad13
Show file tree
Hide file tree
Showing 52 changed files with 4,856 additions and 611 deletions.
7 changes: 6 additions & 1 deletion api/workers/autoscale.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,12 @@ func autoscaleRack() {

log.Logf("change=%d", (desired - system.Count))

system.Count = desired
// ok to start multiple but shut them down one at a time
if desired < system.Count {
system.Count--
} else {
system.Count = desired
}

err = models.Provider().SystemSave(*system)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion cmd/convox/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func init() {
},
cli.BoolFlag{
Name: "no-sync",
Usage: "synchronize local file changes into the running containers",
Usage: "do not synchronize local file changes into the running containers",
},
},
})
Expand Down
8 changes: 5 additions & 3 deletions vendor/github.com/convox/logger/logger.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

148 changes: 148 additions & 0 deletions vendor/github.com/docker/docker/opts/hosts.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions vendor/github.com/docker/docker/opts/hosts_unix.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions vendor/github.com/docker/docker/opts/hosts_windows.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions vendor/github.com/docker/docker/opts/ip.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ba9ad13

Please sign in to comment.