Mongo log works (and bug fixed)

This commit is contained in:
Barak Michener 2014-08-10 21:05:39 -04:00
parent 3770190db5
commit 48711af1d9
3 changed files with 45 additions and 5 deletions

View file

@ -140,9 +140,9 @@ func (it *Iterator) Clone() graph.Iterator {
func (it *Iterator) Next() bool {
var result struct {
Id string "_id"
Added []int64
Deleted []int64
Id string "_id"
Added []int64 "Added"
Deleted []int64 "Deleted"
}
found := it.iter.Next(&result)
if !found {