Skip to content

Commit

Permalink
usm: go-tls: Fix typo in error message (DataDog#32535)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitkyrka authored Dec 30, 2024
1 parent dc3b8fb commit 20b6bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/network/usm/ebpf_gotls.go
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ func registerCBCreator(mgr *manager.Manager, offsetsDataMap *ebpf.Map, probeIDs
if errors.Is(err, safeelf.ErrNoSymbols) {
binNoSymbolsMetric.Add(1)
}
return fmt.Errorf("error extracting inspectoin data from %s: %w", filePath.HostPath, err)
return fmt.Errorf("error extracting inspection data from %s: %w", filePath.HostPath, err)
}

if err := addInspectionResultToMap(offsetsDataMap, filePath.ID, inspectionResult); err != nil {
Expand Down

0 comments on commit 20b6bd1

Please sign in to comment.