Skip to content

Commit

Permalink
wrap error
Browse files Browse the repository at this point in the history
  • Loading branch information
nklaassen committed Jan 24, 2025
1 parent 91e8130 commit a4e56e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/vnet/remote_app_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ func newRemoteAppProvider(clt *clientApplicationServiceClient) *remoteAppProvide

// ResolveAppInfo implements [appProvider.ResolveAppInfo].
func (p *remoteAppProvider) ResolveAppInfo(ctx context.Context, fqdn string) (*vnetv1.AppInfo, error) {
return p.clt.ResolveAppInfo(ctx, fqdn)
appInfo, err := p.clt.ResolveAppInfo(ctx, fqdn)
return appInfo, trace.Wrap(err)
}

// ReissueAppCert issues a new cert for the target app. Signatures made with the
Expand Down

0 comments on commit a4e56e9

Please sign in to comment.