port can be exist without name

This commit is contained in:
Shini31 2016-06-07 17:20:22 +02:00
parent c4721fdcce
commit ff2b8c55e0
1 changed files with 5 additions and 2 deletions

View File

@ -136,8 +136,11 @@ sub api_request {
eval {
$webcontent = $json->decode($jsoncontent);
};
$self->{port_infos}->{name} = $webcontent->{port}->{name};
if ($self->{port_infos}->{name} eq '') {
$self->{port_infos}->{name} = "unknown";
else {
$self->{port_infos}->{name} = $webcontent->{port}->{name};
}
$self->{port_infos}->{admin_state} = $webcontent->{port}->{admin_state_up};
$self->{port_infos}->{status} = $webcontent->{port}->{status};
}