Skip to content

Commit

Permalink
Merge pull request #322 from portworx/pb-4969
Browse files Browse the repository at this point in the history
pb-4969: Fixed issue with backuplocation CR variable, which was causing the nfs backup issue.
  • Loading branch information
siva-portworx authored Nov 22, 2023
2 parents fdf611b + b7fd17f commit 0653aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controllers/dataexport/reconcile.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ func (c *Controller) sync(ctx context.Context, in *kdmpapi.DataExport) (bool, er
blNamespace = vb.Spec.BackupLocation.Namespace
}

backupLocation, err := readBackupLocation(blName, blNamespace, "")
backupLocation, err = readBackupLocation(blName, blNamespace, "")
if err != nil {
msg := fmt.Sprintf("reading of backuplocation [%v/%v] failed: %v", blNamespace, blName, err)
logrus.Errorf(msg)
Expand Down

0 comments on commit 0653aa5

Please sign in to comment.