Skip to content

Commit d0d7a32

Browse files
authored
Clearing up error on resize failure message. (zalando#1641)
* Clearing up error message.
1 parent d318360 commit d0d7a32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cluster/volumes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ func (c *Cluster) syncUnderlyingEBSVolume() error {
128128

129129
err = c.VolumeResizer.ModifyVolume(volume.VolumeID, modifyType, modifySize, modifyIops, modifyThroughput)
130130
if err != nil {
131-
errors = append(errors, fmt.Sprintf("modify volume failed: volume=%s size=%d iops=%d throughput=%d", volume.VolumeID, volume.Size, volume.Iops, volume.Throughput))
131+
errors = append(errors, fmt.Sprintf("modify failed, showing current EBS values: volume-id=%s size=%d iops=%d throughput=%d", volume.VolumeID, volume.Size, volume.Iops, volume.Throughput))
132132
}
133133
}
134134
}

0 commit comments

Comments
 (0)