Skip to content

Commit

Permalink
fixed meteor test issue regarding objectID formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
eparker-tulip committed Oct 2, 2024
1 parent fd9e6db commit 021ad54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/oplog/tail.go
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,8 @@ func (tailer *Tailer) parseRawOplogEntry(entry rawOplogEntry, txIdx *uint) []opl
}
oid, ok := idLookup.ObjectIDOK()
if ok {
out.DocID = oid //.String()
// this is left as ObjectID type for now so it can be properly converted in processor.go:56
out.DocID = oid
} else {
oidString, ok := idLookup.StringValueOK()
if ok {
Expand Down

0 comments on commit 021ad54

Please sign in to comment.