-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/59214/
-----------------------------------------------------------
Review request for mesos and Benjamin Mahler.
Bugs: MESOS-6977
https://issues.apache.org/jira/browse/MESOS-6977
Repository: mesos
Description
-------
In previous versions of Mesos, the master might know about a task
running on an agent, but might not have a `FrameworkInfo` for that
task's framework. This might occur if the master fails over, the agent
re-registers, but the framework has not (yet) re-registered.
In Mesos 1.0, the agent will now supply the FrameworkInfo for all tasks
it is running when it re-registers with the master. Since we no longer
support 0.x agents, we can remove the old backward compatibility code
for handling a running task with unknown FrameworkInfo.
Note that this means that "orphan tasks", "orphan executors", and
"unregistered frameworks" are no longer possible.
Diffs
-----
src/master/http.cpp e2590a17044ac019b24a24629428d4ec8adc0c31
src/master/master.cpp 4e7a161f431624bd78d3e9032eb8587687149cad
Diff: https://reviews.apache.org/r/59214/diff/1/
Testing
-------
`make check`
Thanks,
Neil Conway