Skip to content

Commit

Permalink
update after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Grass committed Dec 13, 2024
1 parent b9851c8 commit bc24fb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flyteadmin/pkg/data/implementations/azure_remote_url.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type AzureRemoteURL struct {
presignDuration time.Duration
}

func (n *AzureRemoteURL) Get(ctx context.Context, uri string) (admin.UrlBlob, error) {
func (n *AzureRemoteURL) Get(ctx context.Context, uri string) (*admin.UrlBlob, error) {
metadata, err := n.remoteDataStoreClient.Head(ctx, storage.DataReference(uri))
if err != nil {
return admin.UrlBlob{}, errors.NewFlyteAdminErrorf(codes.Internal,

Check failure on line 22 in flyteadmin/pkg/data/implementations/azure_remote_url.go

View workflow job for this annotation

GitHub Actions / compile

cannot use admin.UrlBlob{} (value of type admin.UrlBlob) as *admin.UrlBlob value in return statement
Expand Down

0 comments on commit bc24fb8

Please sign in to comment.