Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #494 from ammendonca/HAWKULAR-624
Browse files Browse the repository at this point in the history
HAWKULAR-624 : Fix multi feed servers overwriting
  • Loading branch information
pilhuhn committed Sep 23, 2015
2 parents ee8997b + d63b699 commit b6b9f48
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ module HawkularMetrics {
this.lastUpdateTimestamp = new Date();
}, this);
this.$q.all(promises).then((result) => {
this.resourceList = aResourceList;
// FIXME this needs to be revisited, this won't work for removed resources
this.resourceList = _.uniq(_.union(this.resourceList, aResourceList), 'path');
});
},
() => { // error
Expand Down

0 comments on commit b6b9f48

Please sign in to comment.