Skip to content

Commit

Permalink
FIX errors in forwarding logic introduce in recent commits (all ftest…
Browse files Browse the repository at this point in the history
… should work now)
  • Loading branch information
fgalan committed Aug 29, 2024
1 parent e8c9f1a commit 03da017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/mongoBackend/mongoQueryContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static bool someContextElementNotFound(const ContextElementResponseVector& cerV)
*/
static void fillContextProviders(ContextElementResponseVector& cerV, const std::vector<ngsiv2::Registration>& regV)
{
for (unsigned int ix = 0; ix < regV.size(); ++ix)
for (unsigned int ix = 0; ix < cerV.size(); ++ix)
{
fillContextProviders(cerV[ix], regV);
}
Expand Down

0 comments on commit 03da017

Please sign in to comment.