mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 02:11:38 +02:00
Added instrumentation to FlowObjectiveManager to confirm/deny time-cost of pipeliner setup. Change-Id: I93bcd786b0a7cb2b953a23c51f82a20d915d8d1a
10 lines
367 B
Bash
Executable File
10 lines
367 B
Bash
Executable File
#!/bin/bash
|
|
# -----------------------------------------------------------------------------
|
|
# Wipes out all data from the ONOS cluster. Temporary until wipe-out is fixed.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
for node in ${ONOS_INSTANCES:-$OCI}; do
|
|
onos $node wipe-out please
|
|
done
|
|
onos-check-summary $OCI '.*' 0 0 0 0 0
|