8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80e1429 commit fbe8851Copy full SHA for fbe8851
arangod/Utils/AqlTransaction.cpp
@@ -60,7 +60,7 @@ int AqlTransaction::processCollectionNormal(aql::Collection* collection) {
60
61
arangodb::LogicalCollection const* col =
62
this->resolver()->getCollectionStruct(collection->getName());
63
- if (col == nullptr) {
+ /*if (col == nullptr) {
64
auto startTime = TRI_microtime();
65
auto endTime = startTime + 60.0;
66
do {
@@ -71,6 +71,7 @@ int AqlTransaction::processCollectionNormal(aql::Collection* collection) {
71
col = this->resolver()->getCollectionStruct(collection->getName());
72
} while (col == nullptr);
73
}
74
+ */
75
if (col != nullptr) {
76
cid = col->cid();
77
0 commit comments