We want to sort by raw timestamps, we don't want to fetch them

This commit is contained in:
Thomas Gelf 2014-02-21 10:32:06 +00:00
parent dfb261a5ca
commit 3fa5ef0ea2
1 changed files with 2 additions and 2 deletions

View File

@ -151,14 +151,14 @@ abstract class AbstractObject
'host_name',
'service_description',
'timestamp',
'raw_timestamp',
// 'raw_timestamp',
'state',
'attempt',
'max_attempts',
'output',
'type'
)
)->sort('timestamp', 'DESC')->getQuery();
)->sort('raw_timestamp', 'DESC')->getQuery();
return $this;
}