1
0
Fork 0

comment out waiting for now

This commit is contained in:
Andreas Streichardt 2016-12-08 16:49:14 +01:00
parent 80e14296c7
commit fbe8851ba2
1 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,7 @@ int AqlTransaction::processCollectionNormal(aql::Collection* collection) {
arangodb::LogicalCollection const* col = arangodb::LogicalCollection const* col =
this->resolver()->getCollectionStruct(collection->getName()); this->resolver()->getCollectionStruct(collection->getName());
if (col == nullptr) { /*if (col == nullptr) {
auto startTime = TRI_microtime(); auto startTime = TRI_microtime();
auto endTime = startTime + 60.0; auto endTime = startTime + 60.0;
do { do {
@ -71,6 +71,7 @@ int AqlTransaction::processCollectionNormal(aql::Collection* collection) {
col = this->resolver()->getCollectionStruct(collection->getName()); col = this->resolver()->getCollectionStruct(collection->getName());
} while (col == nullptr); } while (col == nullptr);
} }
*/
if (col != nullptr) { if (col != nullptr) {
cid = col->cid(); cid = col->cid();
} }