File tree 2 files changed +12
-8
lines changed
2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -366,7 +366,7 @@ angular.module('openshiftConsole')
366
366
} )
367
367
. filter ( 'isWebRoute' , function ( routeHostFilter ) {
368
368
return function ( route ) {
369
- return ! ! routeHostFilter ( route ) &&
369
+ return ! ! routeHostFilter ( route , true ) &&
370
370
_ . get ( route , 'spec.wildcardPolicy' ) !== 'Subdomain' ;
371
371
} ;
372
372
} )
@@ -1273,7 +1273,7 @@ angular.module('openshiftConsole')
1273
1273
} ;
1274
1274
} )
1275
1275
. filter ( 'routeHost' , function ( ) {
1276
- return function ( route ) {
1276
+ return function ( route , onlyAdmitted ) {
1277
1277
if ( ! _ . get ( route , 'status.ingress' ) ) {
1278
1278
return _ . get ( route , 'spec.host' ) ;
1279
1279
}
@@ -1289,7 +1289,11 @@ angular.module('openshiftConsole')
1289
1289
}
1290
1290
} ) ;
1291
1291
1292
- return oldestAdmittedIngress ? oldestAdmittedIngress . host : route . spec . host ;
1292
+ if ( oldestAdmittedIngress ) {
1293
+ return oldestAdmittedIngress . host ;
1294
+ }
1295
+
1296
+ return onlyAdmitted ? null : route . spec . host ;
1293
1297
} ;
1294
1298
} )
1295
1299
. filter ( 'isRequestCalculated' , function ( LimitRangesService ) {
Original file line number Diff line number Diff line change @@ -14325,7 +14325,7 @@ namespace:e
14325
14325
};
14326
14326
} ]).filter("isWebRoute", [ "routeHostFilter", function(a) {
14327
14327
return function(b) {
14328
- return !!a(b) && "Subdomain" !== _.get(b, "spec.wildcardPolicy");
14328
+ return !!a(b, !0 ) && "Subdomain" !== _.get(b, "spec.wildcardPolicy");
14329
14329
};
14330
14330
} ]).filter("routeWebURL", [ "routeHostFilter", function(a) {
14331
14331
return function(b, c, d) {
@@ -14833,16 +14833,16 @@ type:b
14833
14833
}) :null;
14834
14834
};
14835
14835
}).filter("routeHost", function() {
14836
- return function(a) {
14836
+ return function(a, b ) {
14837
14837
if (!_.get(a, "status.ingress")) return _.get(a, "spec.host");
14838
14838
if (!a.status.ingress) return a.spec.host;
14839
- var b = null;
14839
+ var c = null;
14840
14840
return angular.forEach(a.status.ingress, function(a) {
14841
14841
_.some(a.conditions, {
14842
14842
type:"Admitted",
14843
14843
status:"True"
14844
- }) && (!b || b .lastTransitionTime > a.lastTransitionTime) && (b = a);
14845
- }), b ? b .host :a.spec.host;
14844
+ }) && (!c || c .lastTransitionTime > a.lastTransitionTime) && (c = a);
14845
+ }), c ? c .host :b ? null :a.spec.host;
14846
14846
};
14847
14847
}).filter("isRequestCalculated", [ "LimitRangesService", function(a) {
14848
14848
return function(b, c) {
You can’t perform that action at this time.
0 commit comments