Skip to content

Commit

Permalink
change formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kubasobon committed Oct 17, 2024
1 parent af681a7 commit bd657d7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ func (p *storageAccountProvider) ListStorageAccountQueues(ctx context.Context, s

queues, err := transformQueues(responses, sa)
if err != nil {
p.log.Errorf("error while transforming azure queues for storage accounts %s: %w", sa.Id, err)
p.log.Errorf("error while transforming azure queues for storage accounts %s: %v", sa.Id, err)
}

assets = append(assets, queues...)
Expand All @@ -210,7 +210,7 @@ func (p *storageAccountProvider) ListStorageAccountQueueServices(ctx context.Con
for _, item := range response.Value {
properties, err := maps.AsMapStringAny(item.QueueServiceProperties)
if err != nil {
p.log.Errorf("error while transforming azure queue services for storage accounts %s: %w", sa.Id, err)
p.log.Errorf("error while transforming azure queue services for storage accounts %s: %v", sa.Id, err)
}

assets = append(assets, AzureAsset{
Expand Down

0 comments on commit bd657d7

Please sign in to comment.