diff --git a/internal/grpc/services/gateway/appregistry.go b/internal/grpc/services/gateway/appregistry.go index d08dcd2dc7d..cf50c140793 100644 --- a/internal/grpc/services/gateway/appregistry.go +++ b/internal/grpc/services/gateway/appregistry.go @@ -32,7 +32,7 @@ func (s *svc) GetAppProviders(ctx context.Context, req *registry.GetAppProviders if err != nil { err = errors.Wrap(err, "gateway: error calling GetAppRegistryClient") return ®istry.GetAppProvidersResponse{ - Status: status.NewInternal(ctx, err, "error getting user share provider client"), + Status: status.NewInternal(ctx, err, "error getting app registry client"), }, nil } @@ -49,7 +49,7 @@ func (s *svc) AddAppProvider(ctx context.Context, req *registry.AddAppProviderRe if err != nil { err = errors.Wrap(err, "gateway: error calling GetAppRegistryClient") return ®istry.AddAppProviderResponse{ - Status: status.NewInternal(ctx, err, "error getting user share provider client"), + Status: status.NewInternal(ctx, err, "error getting app registry client"), }, nil } @@ -66,7 +66,7 @@ func (s *svc) ListAppProviders(ctx context.Context, req *registry.ListAppProvide if err != nil { err = errors.Wrap(err, "gateway: error calling GetAppRegistryClient") return ®istry.ListAppProvidersResponse{ - Status: status.NewInternal(ctx, err, "error getting user share provider client"), + Status: status.NewInternal(ctx, err, "error getting app registry client"), }, nil } @@ -83,7 +83,7 @@ func (s *svc) GetDefaultAppProviderForMimeType(ctx context.Context, req *registr if err != nil { err = errors.Wrap(err, "gateway: error calling GetAppRegistryClient") return ®istry.GetDefaultAppProviderForMimeTypeResponse{ - Status: status.NewInternal(ctx, err, "error getting user share provider client"), + Status: status.NewInternal(ctx, err, "error getting app registry client"), }, nil } @@ -100,7 +100,7 @@ func (s *svc) SetDefaultAppProviderForMimeType(ctx context.Context, req *registr if err != nil { err = errors.Wrap(err, "gateway: error calling GetAppRegistryClient") return ®istry.SetDefaultAppProviderForMimeTypeResponse{ - Status: status.NewInternal(ctx, err, "error getting user share provider client"), + Status: status.NewInternal(ctx, err, "error getting app registry client"), }, nil }