Skip to content

Commit 1195b54

Browse files
committed
Remove object IDs from mega output
1 parent 9727c0c commit 1195b54

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

post-processor/mega/main.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ func (agg *usageAggregator) IngestRecord(ctx *core.ExecutionContext, lineNumber
9292
fullName = strings.Split(fullName, ",")[1]
9393
}
9494

95+
if strings.Contains(receiver, ",") {
96+
receiver = strings.Split(receiver, ",")[1]
97+
}
98+
9599
// Feature-map lookup/population (with IDL lookup)
96100
feature, ok := agg.features[fullName]
97101
if !ok {

0 commit comments

Comments
 (0)