From 91631a1c731790941256c64e0c32304248727923 Mon Sep 17 00:00:00 2001 From: chinmaysomani Date: Mon, 20 Feb 2023 11:21:59 +0530 Subject: [PATCH] minor change in populator --- populator/populator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/populator/populator.go b/populator/populator.go index 14be39d..6841c67 100644 --- a/populator/populator.go +++ b/populator/populator.go @@ -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),