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:
Christopher Batey 2019-02-21 14:12:55 +00:00 committed by GitHub
parent 555fe026d0
commit baa9c52254
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View file

@ -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))