1
0
Fork 0

do not cache collection status

This commit is contained in:
Jan Steemann 2014-02-26 11:25:24 +01:00
parent 610df5ce35
commit 27e59aa9a3
2 changed files with 4 additions and 0 deletions

View File

@ -441,6 +441,8 @@ ArangoDatabase.prototype._flushCache = function () {
var collection = this[name];
if (collection instanceof this._collectionConstructor) {
// reset the collection status
collection._status = null;
this[name] = undefined;
}
}

View File

@ -440,6 +440,8 @@ ArangoDatabase.prototype._flushCache = function () {
var collection = this[name];
if (collection instanceof this._collectionConstructor) {
// reset the collection status
collection._status = null;
this[name] = undefined;
}
}