Skip to content

Commit ab6b696

Browse files
committed
added error message
1 parent a0c11d6 commit ab6b696

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pkg/appStore/deployment/service/InstalledAppService.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,12 @@ func (impl *InstalledAppServiceImpl) FindAppDetailsForAppstoreApplication(instal
799799
},
800800
},
801801
}
802+
802803
notes, err := impl.helmAppService.GetNotes(context.Background(), installReleaseRequest)
804+
if err != nil {
805+
impl.logger.Errorw("error in fetching notes", "err", err)
806+
return appDetail, err
807+
}
803808
appDetail.Notes = notes
804809
}
805810
return appDetail, nil

0 commit comments

Comments
 (0)