fix: convert ctx.Method() []byte
to string
see similar commit 10d174f626
This commit is contained in:
parent
bc6490187d
commit
27a8c3d1d1
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ func handler(ctx *fasthttp.RequestCtx) {
|
||||||
)
|
)
|
||||||
|
|
||||||
row := stmt.QueryRow(
|
row := stmt.QueryRow(
|
||||||
ctx.Method(),
|
string(ctx.Method()),
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
"%s://%s:%s%s",
|
"%s://%s:%s%s",
|
||||||
scheme,
|
scheme,
|
||||||
|
|
Loading…
Add table
Reference in a new issue