diff --git a/app/service/containers/route.js b/app/service/containers/route.js index 3f4cad6f6..560b39641 100644 --- a/app/service/containers/route.js +++ b/app/service/containers/route.js @@ -5,22 +5,9 @@ export default Ember.Route.extend({ statsSocket: null, model() { - var promises = []; - // Load the hosts for the instances if they're not already there var service = this.modelFor('service').get('service'); - var instances = service.get('instances'); - if (instances) { - instances.forEach((instance) => { - if (!instance.get('primaryHost')) { - promises.push(instance.importLink('hosts')); - } - }); - } - - return Ember.RSVP.all(promises).then(() => { - return service; - }); + return service; }, setupController() {