Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/scripts/controllers/deployment.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ angular.module('openshiftConsole')

// List limit ranges in this project to determine if there is a default
// CPU request for autoscaling.
DataService.list("limitranges", context, function(response) {
DataService.list("limitranges", context).then(function(response) {
limitRanges = response.by("metadata.name");
updateHPAWarnings();
});
Expand Down
2 changes: 1 addition & 1 deletion dist/scripts/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -5168,7 +5168,7 @@ type:"error",
message:404 === c.status ? "This deployment can not be found, it may have been deleted." :"The deployment details could not be loaded.",
details:404 === c.status ? "Any remaining deployment history for this deployment will be shown." :"Reason: " + b("getErrorDetails")(c)
};
}), e.list("limitranges", k, function(a) {
}), e.list("limitranges", k).then(function(a) {
v = a.by("metadata.name"), w();
});
var x = [], y = [];
Expand Down