Skip to content

Commit

Permalink
Switched from 0.0.0.0 to 127.0.0.1 (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
ziflex authored Nov 30, 2018
1 parent b3611c5 commit f5901e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ var (

conn = flag.String(
"cdp",
"http://0.0.0.0:9222",
"http://127.0.0.1:9222",
"set CDP address",
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/runtime/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit f5901e2

Please sign in to comment.