1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-01-28 03:56:45 +02:00

Switched from 0.0.0.0 to 127.0.0.1 (#197)

This commit is contained in:
Tim Voronov 2018-11-30 14:12:08 -05:00 committed by GitHub
parent b3611c5713
commit f5901e2226
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ var (
conn = flag.String(
"cdp",
"http://0.0.0.0:9222",
"http://127.0.0.1:9222",
"set CDP address",
)

View File

@ -24,7 +24,7 @@ type (
func NewOptions() *Options {
return &Options{
cdp: "http://0.0.0.0:9222",
cdp: "http://127.0.0.1:9222",
params: make(map[string]core.Value),
logging: &logging.Options{
Writer: os.Stdout,