Skip to content

Commit dc797e8

Browse files
committed
Move --server.authentication=false to config files
1 parent 25c0a36 commit dc797e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/arangodb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ var confFileTemplate = `# ArangoDB configuration file
168168
[server]
169169
endpoint = tcp://0.0.0.0:%s
170170
threads = %d
171+
authentication = false
171172
172173
[log]
173174
level = %s
@@ -218,7 +219,6 @@ func (s *Service) makeBaseArgs(myHostDir, myContainerDir string, myAddress strin
218219
"--javascript.app-path", slasher(filepath.Join(myContainerDir, "apps")),
219220
"--log.file", slasher(filepath.Join(myContainerDir, "arangod.log")),
220221
"--log.force-direct", "false",
221-
"--server.authentication", "false",
222222
)
223223
if s.ServerThreads != 0 {
224224
args = append(args, "--server.threads", strconv.Itoa(s.ServerThreads))

0 commit comments

Comments
 (0)