fix tests
This commit is contained in:
@@ -15,13 +15,17 @@ func (f *Filer) NotifyUpdateEvent(oldEntry, newEntry *Entry) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
msgqueue.Queue.SendMessage(
|
if msgqueue.Queue != nil {
|
||||||
key,
|
|
||||||
&filer_pb.EventNotification{
|
msgqueue.Queue.SendMessage(
|
||||||
OldEntry: toProtoEntry(oldEntry),
|
key,
|
||||||
NewEntry: toProtoEntry(newEntry),
|
&filer_pb.EventNotification{
|
||||||
},
|
OldEntry: toProtoEntry(oldEntry),
|
||||||
)
|
NewEntry: toProtoEntry(newEntry),
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user