Browse Source

fix build

pull/7160/head
chrislu 1 month ago
parent
commit
5a46e9bcb2
  1. 2
      test/s3/iam/s3_iam_framework.go

2
test/s3/iam/s3_iam_framework.go

@ -656,7 +656,7 @@ func (f *S3IAMTestFramework) GenerateUniqueBucketName(prefix string) string {
testName = strings.ReplaceAll(testName, "_", "-")
// Add random suffix to handle parallel tests
randomSuffix := mathrand.IntN(10000)
randomSuffix := mathrand.Intn(10000)
return fmt.Sprintf("%s-%s-%d", prefix, testName, randomSuffix)
}

Loading…
Cancel
Save