Jon Hall
Committed by Pavlin Radoslavov

Make id required for cluser-devices command

    - Fix for ONOS-997

Change-Id: I9becb74a44509d804404e8f8beb44ef718d0b9b6
...@@ -37,7 +37,7 @@ import static org.onosproject.net.topology.ClusterId.clusterId; ...@@ -37,7 +37,7 @@ import static org.onosproject.net.topology.ClusterId.clusterId;
37 public class ClusterDevicesCommand extends ClustersListCommand { 37 public class ClusterDevicesCommand extends ClustersListCommand {
38 38
39 @Argument(index = 0, name = "id", description = "Cluster ID", 39 @Argument(index = 0, name = "id", description = "Cluster ID",
40 - required = false, multiValued = false) 40 + required = true, multiValued = false)
41 String id = null; 41 String id = null;
42 42
43 @Override 43 @Override
......