From 69adcdb2a35a5a268e133107cd2714c665ead5e6 Mon Sep 17 00:00:00 2001 From: Roman Mingazeev Date: Thu, 10 Dec 2020 15:17:21 +0300 Subject: [PATCH] Update post-processor/yandex-export/step-attach-disk.go Co-authored-by: GennadySpb --- post-processor/yandex-export/step-attach-disk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post-processor/yandex-export/step-attach-disk.go b/post-processor/yandex-export/step-attach-disk.go index 33f2159f0..63a1ee4f0 100644 --- a/post-processor/yandex-export/step-attach-disk.go +++ b/post-processor/yandex-export/step-attach-disk.go @@ -49,7 +49,7 @@ func (c *StepAttachDisk) Run(ctx context.Context, state multistep.StateBag) mult } md, ok := protoMD.(*compute.CreateDiskMetadata) if !ok { - return yandex.StepHaltWithError(state, fmt.Errorf("could not get Instance ID from create operation metadata")) + return yandex.StepHaltWithError(state, fmt.Errorf("could not get Disk ID from create operation metadata")) } state.Put("secondary_disk_id", md.GetDiskId())