Skip to content

Commit

Permalink
Merge "During upgrade cql driver returns BACK_PRESSURE error to the q…
Browse files Browse the repository at this point in the history
…ueryengine. Its is not handled correctly by query engine. Making changes to that. Closes-Bug:#1667772" into R3.2
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Feb 25, 2017
2 parents e331c56 + 94ce886 commit 775dd7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query_engine/db_query.cc
Expand Up @@ -264,7 +264,7 @@ void DbQueryUnit::cb(GenDb::DbOpResult::type dresult,
} catch (boost::bad_get& ex) {
assert(0);
}
if (dresult == GenDb::DbOpResult::ERROR) {
if (dresult != GenDb::DbOpResult::OK) {
// Dont issue any more requests
query_fetch_error = true;
ExternalProcIf<q_result> * rpi(
Expand Down

0 comments on commit 775dd7d

Please sign in to comment.