From f2184e0860da51c703cae81cd096679aebaba5b1 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Thu, 2 Apr 2015 11:11:28 -0700 Subject: [PATCH] Fix comment --- pkg/cloudprovider/aws/aws.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cloudprovider/aws/aws.go b/pkg/cloudprovider/aws/aws.go index 9aef33ccbc6..bd22b747f24 100644 --- a/pkg/cloudprovider/aws/aws.go +++ b/pkg/cloudprovider/aws/aws.go @@ -858,7 +858,7 @@ func (aws *AWSCloud) AttachDisk(instanceName string, diskName string, readOnly b if !alreadyAttached { attachResponse, err := aws.ec2.AttachVolume(disk.awsId, awsInstance.awsId, mountDevice) if err != nil { - // TODO: Check if already attached? + // TODO: Check if concurrently attached? return fmt.Errorf("Error attaching EBS volume: %v", err) }