Skip to content

Commit

Permalink
Randomize object path for validation tasks (#30719)
Browse files Browse the repository at this point in the history
  • Loading branch information
damondouglas authored Mar 24, 2024
1 parent 4208b86 commit cb18dd3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2504,7 +2504,7 @@ class BeamModulePlugin implements Plugin<Project> {
argsNeeded.add("--gcpRegion=${config.gcpRegion}")
}
if (config.gcsBucket) {
argsNeeded.add("--gcsBucket=${config.gcsBucket}")
argsNeeded.add("--gcsBucket=${config.gcsBucket}/${randomUUID().toString()}")
}
if (config.bqDataset) {
argsNeeded.add("--bqDataset=${config.bqDataset}")
Expand Down

0 comments on commit cb18dd3

Please sign in to comment.