mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 09:51:38 +02:00
Prevent wipeout command from failing STC runs
Change-Id: I07ec96d408732fbd9e9e47ffcdc22b7bf850227e
This commit is contained in:
parent
2b6ff4250e
commit
ab87ac444f
@ -114,7 +114,7 @@ public class WipeOutCommand extends ClustersListCommand {
|
|||||||
hostAdminService.removeHost(host.id());
|
hostAdminService.removeHost(host.id());
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.warn("Unable to wipe-out hosts", e);
|
log.info("Unable to wipe-out hosts", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -128,7 +128,7 @@ public class WipeOutCommand extends ClustersListCommand {
|
|||||||
deviceAdminService.removeDevice(device.id());
|
deviceAdminService.removeDevice(device.id());
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.warn("Unable to wipe-out devices", e);
|
log.info("Unable to wipe-out devices", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -143,7 +143,7 @@ public class WipeOutCommand extends ClustersListCommand {
|
|||||||
linkAdminService.removeLinks(link.dst());
|
linkAdminService.removeLinks(link.dst());
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.warn("Unable to wipe-out links", e);
|
log.info("Unable to wipe-out links", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user