Duration on job was not specified, beacuse we actually don't return duration from the API, it's always calculated based on startedAt and finishedAt, that's why it's obsolete. It doesn't hurt to have it defined on the Job model, but there's no need to do it.
This commit is contained in:
parent
4ef8ffa93a
commit
4fc599f767
|
@ -21,7 +21,6 @@ require 'travis/model'
|
|||
annotations: Ember.hasMany('Travis.Annotation')
|
||||
|
||||
_config: Ember.attr('object', key: 'config')
|
||||
_duration: Ember.attr(Number, key: 'duration')
|
||||
|
||||
log: ( ->
|
||||
@set('isLogAccessed', true)
|
||||
|
@ -108,7 +107,7 @@ require 'travis/model'
|
|||
).observes('state')
|
||||
|
||||
isPropertyLoaded: (key) ->
|
||||
if ['_duration', '_finishedAt'].contains(key) && !@get('isFinished')
|
||||
if ['_finishedAt'].contains(key) && !@get('isFinished')
|
||||
return true
|
||||
else if key == '_startedAt' && @get('state') == 'created'
|
||||
return true
|
||||
|
|
Loading…
Reference in New Issue
Block a user