LocalCluster is a local dgraph cluster
| 50 | |
| 51 | // LocalCluster is a local dgraph cluster |
| 52 | type LocalCluster struct { |
| 53 | conf ClusterConfig |
| 54 | tempBinDir string |
| 55 | tempSecretsDir string |
| 56 | encKeyPath string |
| 57 | |
| 58 | lowerThanV21 bool |
| 59 | customTokenizers string |
| 60 | |
| 61 | // resources |
| 62 | dcli *docker.Client |
| 63 | net cnet |
| 64 | netMutex sync.Mutex // protects network recreation |
| 65 | zeros []*zero |
| 66 | alphas []*alpha |
| 67 | } |
| 68 | |
| 69 | // UpgradeStrategy is an Enum that defines various upgrade strategies |
| 70 | type UpgradeStrategy int |
nothing calls this directly
no outgoing calls
no test coverage detected