Skip to content

Commit ffa3e9b

Browse files
author
OpenShift Bot
authored
Merge pull request #1355 from MarkDeMaria/promisesAutoscaler
Merged by openshift-bot
2 parents ce35daa + 75370d7 commit ffa3e9b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/scripts/controllers/edit/autoscaler.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ angular.module('openshiftConsole')
206206

207207
// List limit ranges in this project to determine if there is a default
208208
// CPU request for autoscaling.
209-
DataService.list("limitranges", context, function(response) {
210-
limitRanges = response.by("metadata.name");
209+
DataService.list("limitranges", context).then(function(resp) {
210+
limitRanges = resp.by("metadata.name");
211211
checkCPURequest();
212212
});
213213
}

dist/scripts/scripts.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7865,7 +7865,7 @@ var e = {}, f = function() {
78657865
var c = _.get(d, "spec.template.spec.containers", []);
78667866
a.showCPURequestWarning = !i.hasCPURequest(c, e, b);
78677867
};
7868-
h.list("limitranges", j, function(a) {
7868+
h.list("limitranges", j).then(function(a) {
78697869
e = a.by("metadata.name"), f();
78707870
});
78717871
}

0 commit comments

Comments
 (0)