Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ script: make $TEST_SUITE
# 3.1 cluster startup is not always a success, causing lots of false positive.
matrix:
allow_failures:
- env: TEST_SUITE=run-tests-local-process ARANGODB=arangodb:3.1
- env: TEST_SUITE=run-tests-docker ARANGODB=arangodb:3.1
- env: TEST_SUITE=run-tests-local-process ARANGODB=arangodb:3.1 STARTER_MODES="single,cluster"
- env: TEST_SUITE=run-tests-docker ARANGODB=arangodb:3.1 STARTER_MODES="single,cluster"

# Install Docker CE
before_install:
Expand Down
2 changes: 0 additions & 2 deletions service/arangod_config_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,15 +229,13 @@ func createArangodArgs(log *logging.Logger, config Config, clusterConfig Cluster
options = append(options,
optionPair{"--cluster.my-address", myTCPURL},
optionPair{"--cluster.my-role", "PRIMARY"},
optionPair{"--cluster.my-local-info", myTCPURL},
optionPair{"--foxx.queues", "false"},
optionPair{"--server.statistics", "true"},
)
case ServerTypeCoordinator:
options = append(options,
optionPair{"--cluster.my-address", myTCPURL},
optionPair{"--cluster.my-role", "COORDINATOR"},
optionPair{"--cluster.my-local-info", myTCPURL},
optionPair{"--foxx.queues", "true"},
optionPair{"--server.statistics", "true"},
)
Expand Down
1 change: 0 additions & 1 deletion service/passthrough.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ var (
"cluster.agency-endpoint",
"cluster.my-address",
"cluster.my-role",
"cluster.my-local-info",
"database.directory",
"javascript.startup-directory",
"javascript.app-path",
Expand Down