fix: empty json string
This commit is contained in:
parent
b10c85c8aa
commit
e2bf59cff4
|
|
@ -1,4 +1,4 @@
|
|||
FROM lukemathwalker/cargo-chef:latest-rust-1.74.0 as chef
|
||||
FROM lukemathwalker/cargo-chef:latest-rust-1.75.0 as chef
|
||||
|
||||
WORKDIR /app
|
||||
RUN apt update && apt install lld clang -y
|
||||
|
|
|
|||
|
|
@ -508,6 +508,7 @@ impl Client {
|
|||
let resp = self
|
||||
.http_client_with_auth(Method::POST, &url)
|
||||
.await?
|
||||
.json(&())
|
||||
.send()
|
||||
.await?;
|
||||
log_request_id(&resp);
|
||||
|
|
|
|||
Loading…
Reference in New Issue