Skip to content

Commit

Permalink
minor change in populator
Browse files Browse the repository at this point in the history
  • Loading branch information
chinmaysomani07 committed Feb 20, 2023
1 parent b47a318 commit 91631a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion populator/populator.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func CreateBuckets(sess *session.Session) error {
for i := 0; i < 10; i++ {
gofakeit.Seed(0)
rWord := gofakeit.Password(true, false, true, false, false, 5)
bName := aws.String("test-" + rWord + "-bucket" + strconv.Itoa(gofakeit.Number(0, 999999999999999999)))
bName := aws.String("test-" + rWord + "-bucket" + strconv.Itoa(gofakeit.Number(0, 99999999)))
_, err := s3Service.CreateBucket(&s3.CreateBucketInput{
Bucket: bName,
ObjectLockEnabledForBucket: aws.Bool(true),
Expand Down

0 comments on commit 91631a1

Please sign in to comment.