diff --git a/idp/pkg/middleware/static.go b/idp/pkg/middleware/static.go index e053f248a8..87c4de9fe0 100644 --- a/idp/pkg/middleware/static.go +++ b/idp/pkg/middleware/static.go @@ -44,6 +44,8 @@ func Static(root string, fs http.FileSystem) func(http.Handler) http.Handler { } span.SetAttributes(attribute.KeyValue{Key: "path", Value: attribute.StringValue(r.URL.Path)}) span.SetStatus(codes.Ok, "ok") + + next.ServeHTTP(w, r) }) } }