aboutsummaryrefslogtreecommitdiff
path: root/uri.go
diff options
context:
space:
mode:
authorGravatar Erik Dubbelboer <erik@dubbelboer.com> 2022-04-01 18:11:16 +0200
committerGravatar GitHub <noreply@github.com> 2022-04-01 18:11:16 +0200
commit7a5afddf5b805a022f8e81281c772c11600da2f4 (patch)
tree76ecbf4981921328d823eb925e57f874f52c34f2 /uri.go
parentsupport adding/removing clients from LBClient (#1243) (diff)
downloadfasthttp-7a5afddf5b805a022f8e81281c772c11600da2f4.tar.gz
fasthttp-7a5afddf5b805a022f8e81281c772c11600da2f4.tar.bz2
fasthttp-7a5afddf5b805a022f8e81281c772c11600da2f4.zip
Use %v for errors and %q for strings (#1262)v1.35.0
Mostly in tests.
Diffstat (limited to 'uri.go')
-rw-r--r--uri.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/uri.go b/uri.go
index 38a431e..ffd68c6 100644
--- a/uri.go
+++ b/uri.go
@@ -808,7 +808,7 @@ func (u *URI) updateBytes(newURI, buf []byte) []byte {
path := u.Path()
n = bytes.LastIndexByte(path, '/')
if n < 0 {
- panic(fmt.Sprintf("BUG: path must contain at least one slash: %s %s", u.Path(), newURI))
+ panic(fmt.Sprintf("BUG: path must contain at least one slash: %q %q", u.Path(), newURI))
}
buf = u.appendSchemeHost(buf[:0])
buf = appendQuotedPath(buf, path[:n+1])