File tree 2 files changed +3
-3
lines changed
app/scripts/controllers/edit
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -206,8 +206,8 @@ angular.module('openshiftConsole')
206
206
207
207
// List limit ranges in this project to determine if there is a default
208
208
// 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" ) ;
211
211
checkCPURequest ( ) ;
212
212
} ) ;
213
213
}
Original file line number Diff line number Diff line change @@ -7865,7 +7865,7 @@ var e = {}, f = function() {
7865
7865
var c = _.get(d, "spec.template.spec.containers", []);
7866
7866
a.showCPURequestWarning = !i.hasCPURequest(c, e, b);
7867
7867
};
7868
- h.list("limitranges", j, function(a) {
7868
+ h.list("limitranges", j).then( function(a) {
7869
7869
e = a.by("metadata.name"), f();
7870
7870
});
7871
7871
}
You can’t perform that action at this time.
0 commit comments