Skip to content

Commit

Permalink
Change default from localhost to 127.0.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Ayato Tokubi <atokubi@redhat.com>
  • Loading branch information
bitoku committed Aug 20, 2024
1 parent 0fa322f commit 105eea4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conmon-rs/server/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ pub struct Config {

#[get = "pub"]
#[arg(
default_value("http://localhost:4317"),
default_value("http://127.0.0.1:4317"),
env(concat!(prefix!(), "TRACING_ENDPOINT")),
long("tracing-endpoint"),
short('t'),
Expand Down
2 changes: 1 addition & 1 deletion pkg/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ type Tracing struct {
Enabled bool

// Endpoint is the GRPC tracing endpoint for OLTP.
// Defaults to "http://localhost:4317"
// Defaults to "http://127.0.0.1:4317"
Endpoint string

// Tracer allows the client to create additional spans if set.
Expand Down

0 comments on commit 105eea4

Please sign in to comment.