-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Update dependencies #165
Update dependencies #165
Conversation
|
@@ -88,7 +88,7 @@ func NewCluster(ctx context.Context, t *testing.T, opts ...Option) Cluster { | |||
}, | |||
} | |||
|
|||
clusterConfig, err := config.TransformSimpleToClusterConfig(ctx, runtimes.SelectedRuntime, simpleCfg) | |||
clusterConfig, err := config.TransformSimpleToClusterConfig(ctx, runtimes.SelectedRuntime, simpleCfg, "") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
""
is okay because the argument that was added is a file name which is only used if simpleCfg
contained a non-empty Files field. Files is empty here.
@@ -45,11 +45,11 @@ func newInstrumentedRouter(metrics *metrics) (*mux.Router, http.Handler) { | |||
router := mux.NewRouter() | |||
|
|||
httpMiddleware := []middleware.Interface{ | |||
middleware.Tracer{ | |||
middleware.RouteInjector{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes are related to grafana/dskit#527
6f87b99
to
9d2d183
Compare
It's been a couple months so time for another fun dependency update. Still hoping one day to clear up the test dependencies.