@@ -278,12 +278,12 @@ func TestRunPushGatewayGatherer(t *testing.T) {
278
278
unregisterDefaults ("myapp" )
279
279
}
280
280
281
- // TestSetPathFor404Logic tests when the 404 response is due to no matching route, the url is not included in the metric
281
+ // TestSetPathFor404NoMatchingRoute tests that the url is not included in the metric when
282
+ // the 404 response is due to no matching route
282
283
func TestSetPathFor404NoMatchingRoute (t * testing.T ) {
283
284
e := echo .New ()
284
285
285
- setPathFor404 := false
286
- e .Use (NewMiddlewareWithConfig (MiddlewareConfig {SetPathFor404 : & setPathFor404 , Subsystem : defaultSubsystem }))
286
+ e .Use (NewMiddlewareWithConfig (MiddlewareConfig {DoNotUseURLFor404 : true , Subsystem : defaultSubsystem }))
287
287
e .GET ("/metrics" , NewHandler ())
288
288
289
289
assert .Equal (t , http .StatusNotFound , request (e , "/nonExistentPath" ))
@@ -296,13 +296,12 @@ func TestSetPathFor404NoMatchingRoute(t *testing.T) {
296
296
unregisterDefaults (defaultSubsystem )
297
297
}
298
298
299
- // TestSetPathFor404Logic tests when the 404 response is due to logic, the url is included in the metric
299
+ // TestSetPathFor404Logic tests that the url is included in the metric when the 404 response is due to logic
300
300
func TestSetPathFor404Logic (t * testing.T ) {
301
301
unregisterDefaults ("myapp" )
302
302
e := echo .New ()
303
303
304
- setPathFor404 := false
305
- e .Use (NewMiddlewareWithConfig (MiddlewareConfig {SetPathFor404 : & setPathFor404 , Subsystem : defaultSubsystem }))
304
+ e .Use (NewMiddlewareWithConfig (MiddlewareConfig {DoNotUseURLFor404 : true , Subsystem : defaultSubsystem }))
306
305
e .GET ("/metrics" , NewHandler ())
307
306
308
307
e .GET ("/sample" , echo .NotFoundHandler )
0 commit comments