Small tweaks to all command aliases (#26403)
* Small tweaks to all command aliases * Adds other cluster all commands * Makes allCluster do all cluster modules * Update CONTRIBUTING.md Co-Authored-By: chbatey <christopher.batey@gmail.com>
This commit is contained in:
parent
555fe026d0
commit
baa9c52254
2 changed files with 13 additions and 1 deletions
|
|
@ -514,9 +514,16 @@ def commandValue(p: Project, externalTest: Option[Project] = None) = {
|
|||
}
|
||||
addCommandAlias("allActor", commandValue(actor, Some(actorTests)))
|
||||
addCommandAlias("allRemote", commandValue(remote, Some(remoteTests)))
|
||||
addCommandAlias("allCluster", commandValue(cluster))
|
||||
addCommandAlias("allClusterCore", commandValue(cluster))
|
||||
addCommandAlias("allClusterMetrics", commandValue(clusterMetrics))
|
||||
addCommandAlias("allDistributedData", commandValue(distributedData))
|
||||
addCommandAlias("allClusterSharding", commandValue(clusterSharding))
|
||||
addCommandAlias("allClusterTools", commandValue(clusterTools))
|
||||
addCommandAlias("allCluster", Seq(
|
||||
commandValue(cluster),
|
||||
commandValue(distributedData),
|
||||
commandValue(clusterSharding),
|
||||
commandValue(clusterTools)).mkString)
|
||||
addCommandAlias("allPersistence", commandValue(persistence))
|
||||
addCommandAlias("allStream", commandValue(stream, Some(streamTests)))
|
||||
addCommandAlias("allDiscovery", commandValue(discovery))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue