mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
cleanup: address ineffectual assignement linter issue
updates: #1586 Signed-off-by: Rakshith R <rar@redhat.com>
This commit is contained in:
parent
b891e5585d
commit
fa1414d98f
@ -19,10 +19,8 @@ import (
|
|||||||
|
|
||||||
func expandPVCSize(c kubernetes.Interface, pvc *v1.PersistentVolumeClaim, size string, t int) error {
|
func expandPVCSize(c kubernetes.Interface, pvc *v1.PersistentVolumeClaim, size string, t int) error {
|
||||||
pvcName := pvc.Name
|
pvcName := pvc.Name
|
||||||
updatedPVC := pvc.DeepCopy()
|
|
||||||
var err error
|
|
||||||
|
|
||||||
updatedPVC, err = c.CoreV1().PersistentVolumeClaims(pvc.Namespace).Get(context.TODO(), pvcName, metav1.GetOptions{})
|
updatedPVC, err := c.CoreV1().PersistentVolumeClaims(pvc.Namespace).Get(context.TODO(), pvcName, metav1.GetOptions{})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("error fetching pvc %q with %w", pvcName, err)
|
return fmt.Errorf("error fetching pvc %q with %w", pvcName, err)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user