Skip to content

Commit

Permalink
set max-concurrent-tags to 1 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Qasim Sarfraz committed Jun 23, 2020
1 parent be2bc0f commit 6f6b20f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imagesync.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func Execute() error {
app := cli.NewApp()
app.Name = "imagesync"
app.Usage = "Sync docker images between repositories."
app.Version = "v0.6.1"
app.Version = "v0.6.2"

app.Flags = []cli.Flag{
cli.StringFlag{
Expand Down Expand Up @@ -71,7 +71,7 @@ func Execute() error {
cli.IntFlag{
Name: "max-concurrent-tags",
Usage: "Maximum number of tags to be synced/copied in parallel.",
Value: 12,
Value: 1,
},
}

Expand Down

0 comments on commit 6f6b20f

Please sign in to comment.