Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a few systests using the removed --dgraph flag. #3284

Merged
merged 1 commit into from Apr 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion systest/21million/test-21million.sh
Expand Up @@ -113,7 +113,7 @@ DockerCompose logs -f alpha1 | grep -q -m1 "Server is ready"
if [[ $LOADER == live ]]; then
Info "live loading data set"
dgraph live --schema=<(curl -LSs $SCHEMA_URL) --files=<(curl -LSs $DATA_URL) \
--format=rdf --zero=:5080 --dgraph=:9180 --logtostderr
--format=rdf --zero=:5080 --alpha=:9180 --logtostderr
fi

if [[ $LOAD_ONLY ]]; then
Expand Down
2 changes: 1 addition & 1 deletion systest/cluster_test.go
Expand Up @@ -176,7 +176,7 @@ func DONOTRUNTestClusterSnapshot(t *testing.T) {
liveCmd := exec.Command(os.ExpandEnv("$GOPATH/bin/dgraph"), "live",
"--files", data,
"--schema", schema,
"--dgraph", ":"+cluster.alphaPort,
"--alpha", ":"+cluster.alphaPort,
"--zero", ":"+cluster.zeroPort,
)
liveCmd.Dir = tmpDir
Expand Down
2 changes: 1 addition & 1 deletion systest/loader-benchmark/loader-benchmark.sh
Expand Up @@ -63,5 +63,5 @@ DockerCompose logs -f dg1 | grep -q -m1 "Server is ready"
if [[ $DGRAPH_LOADER == live ]]; then
Info "live loading 21million data set"
dgraph live --schema=<(curl -LSs $SCHEMA_URL) --files=<(curl -LSs $DATA_URL) \
--format=rdf --zero=:5080 --dgraph=:9180 --logtostderr
--format=rdf --zero=:5080 --alpha=:9180 --logtostderr
fi