Db: don't collect states we learned about

Might be reverted later on, but is the safer choice for now
This commit is contained in:
Thomas Gelf 2015-09-29 18:53:53 +02:00
parent 386a7ee90d
commit a0c418a952
1 changed files with 1 additions and 0 deletions

View File

@ -390,6 +390,7 @@ class Db extends DbConnection
->from('director_deployment_log')
->where('stage_name IS NOT NULL')
->where('stage_collected IS NULL')
->where('startup_succeeded IS NULL')
->order('stage_name');
return DirectorDeploymentLog::loadAll($this, $query, 'stage_name');