ing
This commit is contained in:
parent
d81c0669a4
commit
29cf1bb868
|
@ -444,8 +444,8 @@ export class HomePageComponent implements OnInit, OnDestroy {
|
|||
* DiscoverHost
|
||||
*/
|
||||
@RPCSubscriber({ method: 'DiscoveryService.Queueing' })
|
||||
public DiscoveryQueueing(queueingDate: Date) {
|
||||
console.log('DiscoveryQueueing', queueingDate);
|
||||
public DiscoveryQueueing(requestID: string, queueingDate: Date) {
|
||||
console.log('DiscoveryQueueing', requestID, queueingDate);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -42,6 +42,9 @@ export class NicDropdownComponent implements OnInit {
|
|||
this.probeService.call<Interface>('MachineService.Interfaces').pipe(
|
||||
map((ifaces: Interface[]) => {
|
||||
ifaces.forEach(iface => {
|
||||
if (undefined === iface.addresses) {
|
||||
return;
|
||||
}
|
||||
iface.addresses.forEach(address => {
|
||||
if (address.metaIPType.key !== toMetaIPType(MetaIPTypeEnum.V4).key) {
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue
Block a user