mirror of https://gitee.com/bigwinds/arangodb
comment out waiting for now
This commit is contained in:
parent
80e14296c7
commit
fbe8851ba2
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue