Switch default to localhost. Fixes #107

This commit is contained in:
Barak Michener 2014-08-20 15:56:36 -04:00
parent 2eb25968c2
commit b4ef86145d
3 changed files with 3 additions and 3 deletions

View file

@ -126,7 +126,7 @@ var (
databasePath = flag.String("dbpath", "/tmp/testdb", "Path to the database.")
databaseBackend = flag.String("db", "memstore", "Database Backend.")
replicationBackend = flag.String("replication", "single", "Replication method.")
host = flag.String("host", "0.0.0.0", "Host to listen on (defaults to all).")
host = flag.String("host", "127.0.0.1", "Host to listen on (defaults to all).")
loadSize = flag.Int("load_size", 10000, "Size of triplesets to load")
port = flag.String("port", "64210", "Port to listen on.")
readOnly = flag.Bool("read_only", false, "Disable writing via HTTP.")