| Index: frontend/afe/rpc_utils.py
|
| diff --git a/frontend/afe/rpc_utils.py b/frontend/afe/rpc_utils.py
|
| index 452aa8f1a6c54f4dde47225ef6075eaa6a056d16..7250d9266e509a47cb2cce1c399a77cf417c8378 100644
|
| --- a/frontend/afe/rpc_utils.py
|
| +++ b/frontend/afe/rpc_utils.py
|
| @@ -233,8 +233,10 @@ def check_job_dependencies(host_objects, job_dependencies):
|
| set(host.hostname for host in ok_hosts))
|
| if failing_hosts:
|
| raise model_logic.ValidationError(
|
| - {'hosts' : 'Host(s) failed to meet job dependencies: ' +
|
| - ', '.join(failing_hosts)})
|
| + {'hosts' : 'Host(s) failed to meet job dependencies (' +
|
| + (', '.join(job_dependencies)) + '): ' +
|
| + (', '.join(failing_hosts))})
|
| +
|
|
|
|
|
| def _execution_key_for(host_queue_entry):
|
|
|