Github user vixns commented on a diff in the pull request:
https://github.com/apache/mesos/pull/299#discussion_r197739766
--- Diff: src/slave/containerizer/mesos/isolators/network/cni/cni.cpp ---
@@ -428,6 +428,10 @@ Future<Nothing> NetworkCniIsolatorProcess::recover(
}
}
+ if (infos.contains(containerId)) {
+ continue;
+ }
+
--- End diff --
Understood, L421 is for orphaned tasks only, and in this case the L437 test
matches.
So you're right, moving the continue to L421 make sense.---
