Skip to content

Commit e2144f6

Browse files
committed
Use correct HTTP status from failed DataService.list
Bumps origin-web-common to 0.0.69
1 parent ac7501d commit e2144f6

10 files changed

+49
-19
lines changed

app/scripts/controllers/addConfigVolume.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ angular.module('openshiftConsole')
143143
DataService.list($scope.configMapVersion, context, null, { errorNotification: false }).then(function(configMapData) {
144144
$scope.configMaps = orderByDisplayName(configMapData.by("metadata.name"));
145145
}, function(e) {
146-
if (e.code === 403) {
146+
if (e.status === 403) {
147147
$scope.configMaps = [];
148148
return;
149149
}
@@ -154,7 +154,7 @@ angular.module('openshiftConsole')
154154
DataService.list($scope.secretVersion, context, null, { errorNotification: false }).then(function(secretData) {
155155
$scope.secrets = orderByDisplayName(secretData.by("metadata.name"));
156156
}, function(e) {
157-
if (e.code === 403) {
157+
if (e.status === 403) {
158158
$scope.secrets = [];
159159
return;
160160
}

app/scripts/controllers/edit/deploymentConfig.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ angular.module('openshiftConsole')
155155
$scope.availableConfigMaps = configMapDataOrdered;
156156
$scope.valueFromObjects = configMapDataOrdered.concat(secretDataOrdered);
157157
}, function(e) {
158-
if (e.code === 403) {
158+
if (e.status === 403) {
159159
return;
160160
}
161161

@@ -173,7 +173,7 @@ angular.module('openshiftConsole')
173173
secretsArray.unshift("");
174174
});
175175
}, function(e) {
176-
if (e.code === 403) {
176+
if (e.status === 403) {
177177
return;
178178
}
179179

app/scripts/directives/deployImage.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ angular.module("openshiftConsole")
234234
configMapDataOrdered = orderByDisplayName(configMapData.by("metadata.name"));
235235
$scope.valueFromNamespace[project.metadata.name] = configMapDataOrdered.concat(secretDataOrdered);
236236
}, function(e) {
237-
if (e.code === 403) {
237+
if (e.status === 403) {
238238
return;
239239
}
240240

@@ -250,7 +250,7 @@ angular.module("openshiftConsole")
250250
secretDataOrdered = orderByDisplayName(secretData.by("metadata.name"));
251251
$scope.valueFromNamespace[project.metadata.name] = secretDataOrdered.concat(configMapDataOrdered);
252252
}, function(e) {
253-
if (e.code === 403) {
253+
if (e.status === 403) {
254254
return;
255255
}
256256

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"angular-moment": "1.0.0",
4747
"angular-utf8-base64": "0.0.5",
4848
"file-saver": "1.3.3",
49-
"origin-web-common": "0.0.68",
49+
"origin-web-common": "0.0.69",
5050
"origin-web-catalog": "0.0.57"
5151
},
5252
"devDependencies": {

dist/scripts/scripts.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -7349,7 +7349,7 @@ errorNotification: !1
73497349
}).then(function(t) {
73507350
b = g(t.by("metadata.name")), e.availableConfigMaps = b, e.valueFromObjects = b.concat(S);
73517351
}, function(e) {
7352-
403 !== e.code && h("Could not load config maps", v(e));
7352+
403 !== e.status && h("Could not load config maps", v(e));
73537353
}), c.list("secrets", r, null, {
73547354
errorNotification: !1
73557355
}).then(function(t) {
@@ -7361,7 +7361,7 @@ e.secretsByType = _.each(a, function(e) {
73617361
e.unshift("");
73627362
});
73637363
}, function(e) {
7364-
403 !== e.code && h("Could not load secrets", v(e));
7364+
403 !== e.status && h("Could not load secrets", v(e));
73657365
}), y.push(c.watchObject("deploymentconfigs", a.deploymentconfig, r, function(t, n) {
73667366
"MODIFIED" === n && (e.alerts["updated/deleted"] = {
73677367
type: "warning",
@@ -8665,13 +8665,13 @@ errorNotification: !1
86658665
}).then(function(e) {
86668666
a.configMaps = o(e.by("metadata.name"));
86678667
}, function(e) {
8668-
403 !== e.code ? b("Could not load config maps", d(e)) : a.configMaps = [];
8668+
403 !== e.status ? b("Could not load config maps", d(e)) : a.configMaps = [];
86698669
}), c.list(a.secretVersion, r, null, {
86708670
errorNotification: !1
86718671
}).then(function(e) {
86728672
a.secrets = o(e.by("metadata.name"));
86738673
}, function(e) {
8674-
403 !== e.code ? b("Could not load secrets", d(e)) : a.secrets = [];
8674+
403 !== e.status ? b("Could not load secrets", d(e)) : a.secrets = [];
86758675
});
86768676
var f = function(e) {
86778677
return a.attach.allContainers || a.attach.containers[e.name];
@@ -14030,7 +14030,7 @@ errorNotification: !1
1403014030
}).then(function(r) {
1403114031
t = f(r.by("metadata.name")), n.valueFromNamespace[e.metadata.name] = t.concat(a);
1403214032
}, function(e) {
14033-
403 !== e.code && c.addNotification({
14033+
403 !== e.status && c.addNotification({
1403414034
id: "deploy-image-list-config-maps-error",
1403514035
type: "error",
1403614036
message: "Could not load config maps.",
@@ -14043,7 +14043,7 @@ errorNotification: !1
1404314043
}).then(function(r) {
1404414044
a = f(r.by("metadata.name")), n.valueFromNamespace[e.metadata.name] = a.concat(t);
1404514045
}, function(e) {
14046-
403 !== e.code && c.addNotification({
14046+
403 !== e.status && c.addNotification({
1404714047
id: "deploy-image-list-secrets-error",
1404814048
type: "error",
1404914049
message: "Could not load secrets.",

dist/scripts/vendor.js

+13-3
Original file line numberDiff line numberDiff line change
@@ -73974,7 +73974,7 @@ return e.reject(i);
7397473974
} ]), angular.module("openshiftCommonServices").factory("AuthorizationService", [ "$q", "$cacheFactory", "Logger", "$interval", "APIService", "DataService", function(e, t, n, i, r, o) {
7397573975
var a = null, s = t("rulesCache", {
7397673976
number: 10
73977-
}), l = !1, c = [ "localresourceaccessreviews", "localsubjectaccessreviews", "resourceaccessreviews", "selfsubjectaccessreviews", "selfsubjectrulesreviews", "subjectaccessreviews" ], u = function(e) {
73977+
}), l = !1, c = [ "localresourceaccessreviews", "localsubjectaccessreviews", "resourceaccessreviews", "selfsubjectaccessreviews", "selfsubjectrulesreviews", "subjectaccessreviews", "subjectrulesreviews", "podsecuritypolicyreviews", "podsecuritypolicysubjectreviews", "podsecuritypolicyselfsubjectreviews", "tokenreviews" ], u = function(e) {
7397873978
var t = {};
7397973979
return _.each(e, function(e) {
7398073980
_.each(e.apiGroups, function(n) {
@@ -74589,7 +74589,12 @@ s._listOpComplete(o, e, n, i, t);
7458974589
}).error(function(t, n, r, a) {
7459074590
s._listInFlight(o, !1);
7459174591
var l = s._listDeferred(o);
74592-
delete s._listDeferredMap[o], l.reject(t, n, r, a), _.get(i, "errorNotification", !0) && b("Failed to list " + e, n);
74592+
delete s._listDeferredMap[o], l.reject({
74593+
data: t,
74594+
status: n,
74595+
headers: r,
74596+
config: a
74597+
}), _.get(i, "errorNotification", !0) && b("Failed to list " + e, n);
7459374598
});
7459474599
}) : t({
7459574600
method: "GET",
@@ -74601,7 +74606,12 @@ s._listOpComplete(o, e, n, i, t);
7460174606
}).error(function(t, n, r, a) {
7460274607
s._listInFlight(o, !1);
7460374608
var l = s._listDeferred(o);
74604-
delete s._listDeferredMap[o], l.reject(t, n, r, a), _.get(i, "errorNotification", !0) && b("Failed to list " + e, n);
74609+
delete s._listDeferredMap[o], l.reject({
74610+
data: t,
74611+
status: n,
74612+
headers: r,
74613+
config: a
74614+
}), _.get(i, "errorNotification", !0) && b("Failed to list " + e, n);
7460574615
});
7460674616
}, f.prototype._listOpComplete = function(e, t, n, i, r) {
7460774617
r.items || console.warn("List request for " + t + " returned a null items array. This is an invalid API response.");

0 commit comments

Comments
 (0)