We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efd0965 commit 7340fb9Copy full SHA for 7340fb9
coderd/coderd.go
@@ -10,7 +10,6 @@ import (
10
"flag"
11
"fmt"
12
"io"
13
- "log"
14
"net/http"
15
"net/url"
16
"path/filepath"
@@ -1738,10 +1737,6 @@ var multipleSlashesRe = regexp.MustCompile(`/+`)
1738
1737
1739
func singleSlashMW(next http.Handler) http.Handler {
1740
fn := func(w http.ResponseWriter, r *http.Request) {
1741
- if strings.Contains(r.URL.Path, "test-app-owner") {
1742
- log.Println(r.URL.Path)
1743
- }
1744
-
1745
var path string
1746
rctx := chi.RouteContext(r.Context())
1747
if rctx != nil && rctx.RoutePath != "" {
0 commit comments