Skip to content

Commit 654edae

Browse files
authored
Add blank space before instance-id in log.Println (#597)
before: ``` 2024/11/19 16:59:06 Waiting for instancei-0<snipped> to show up in AWS SSM ``` after: ``` 2024/11/19 16:59:06 Waiting for instance i-0<snipped> to show up in AWS SSM ```
1 parent 45b338a commit 654edae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v2/internal/utils/aws_utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ func UploadFile(s3Client *s3.Client, bucketName string, filename string, content
174174
// may be slow (60+ seconds)
175175
func WaitForInstancesToRegisterInSSM(ssmClient *ssm.Client, instanceIds []string) error {
176176
if len(instanceIds) == 1 {
177-
log.Println("Waiting for instance" + instanceIds[0] + " to show up in AWS SSM")
177+
log.Println("Waiting for instance " + instanceIds[0] + " to show up in AWS SSM")
178178
} else {
179179
log.Println("Waiting for " + strconv.Itoa(len(instanceIds)) + " instances to show up in AWS SSM. This can take a few minutes.")
180180
}

0 commit comments

Comments
 (0)