Skip to content

Commit

Permalink
roachtest: drop -q from gsutil
Browse files Browse the repository at this point in the history
It keeps timing out, so we'd like to see how far it gets.

Closes cockroachdb#33414.

Release note: None
  • Loading branch information
tbg committed Jan 2, 2019
1 parent 32734be commit f839546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/roachtest/store_gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func downloadStoreDumps(ctx context.Context, c *cluster, storeDirPath string, no
node := node
g.Go(func() error {
path := fmt.Sprintf("%s/%d/*", storeDirPath, node)
return c.RunE(ctx, c.Node(node), `mkdir -p {store-dir} && gsutil -m -q cp -r `+path+` {store-dir}`)
return c.RunE(ctx, c.Node(node), `mkdir -p {store-dir} && gsutil -m cp -r `+path+` {store-dir}`)
})
}
return g.Wait()
Expand Down

0 comments on commit f839546

Please sign in to comment.