Skip to content

Commit

Permalink
fix: correct default configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
1995parham committed Oct 21, 2023
1 parent 0184434 commit a96da43
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions internal/config/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,9 @@ func Default() Config {
},
HTTPPort: DefaultHTTPPort,
Tracer: tracing.Config{
Enabled: false,
Ratio: 0.1,
Agent: tracing.Agent{
Host: "127.0.0.1",
Port: "6831",
},
Enabled: false,
Ratio: 0.1,
Endpoint: "127.0.0.1:4317",
},
Validator: Validator{
URL: "http://validator-lb",
Expand All @@ -42,7 +39,7 @@ func Default() Config {
}
}

//nolint:funlen
// nolint: funlen
func SnappVendor() Vendor {
return Vendor{
UseValidator: false,
Expand Down

0 comments on commit a96da43

Please sign in to comment.