Skip to content

Commit

Permalink
fix log string
Browse files Browse the repository at this point in the history
  • Loading branch information
orishavit committed Dec 11, 2024
1 parent ccb6dd0 commit 0266fe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapper/pkg/resolvers/schema.helpers.resolvers.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ func (r *Resolver) handleAWSOperationReport(ctx context.Context, operation model
srcPod, err := r.kubeFinder.ResolveIPToPod(ctx, *op.SrcIP)

if err != nil {
logrus.Errorf("could not resolve %s to pod: %s", op.SrcIP, err.Error())
logrus.Errorf("could not resolve IP %s to pod: %s", *op.SrcIP, err.Error())
continue
}

Expand Down

0 comments on commit 0266fe0

Please sign in to comment.