filer mongo change func update to insert entry

This commit is contained in:
bukton 2020-04-19 11:08:10 +07:00
parent 8c58b0d017
commit 082f079ead

View file

@ -78,7 +78,7 @@ func (store *MongodbStore) InsertEntry(ctx context.Context, entry *filer2.Entry)
}
func (store *MongodbStore) UpdateEntry(ctx context.Context, entry *filer2.Entry) (err error) {
return store.UpdateEntry(ctx, entry)
return store.InsertEntry(ctx, entry)
}
func (store *MongodbStore) FindEntry(ctx context.Context, fullpath util.FullPath) (entry *filer2.Entry, err error) {