Skip to content

Commit

Permalink
Merge #33424
Browse files Browse the repository at this point in the history
33424: roachtest: drop -q from gsutil r=nvanbenschoten a=tbg

It keeps timing out, so we'd like to see how far it gets.

Closes #33414.

Release note: None

Co-authored-by: Tobias Schottdorf <[email protected]>
  • Loading branch information
craig[bot] and tbg committed Jan 2, 2019
2 parents e9c64af + f839546 commit 86afaf7
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 86afaf7

Please sign in to comment.