Skip to content

Commit

Permalink
merge remote
Browse files Browse the repository at this point in the history
  • Loading branch information
vinllen committed Jun 19, 2019
2 parents 295f51c + ed3229e commit ee7d909
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/mongoshake/executor/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,9 @@ func transformLogs(logs []*OplogRecord, nsTrans *transform.NamespaceTransform, t
for _, log := range logs {
partialLog := log.original.partialLog
transPartialLog := transformPartialLog(partialLog, nsTrans, transformRef)
log.original.partialLog = transPartialLog
if transPartialLog != nil {
log.original.partialLog = transPartialLog
}
}
return logs
}
Expand Down

0 comments on commit ee7d909

Please sign in to comment.