diff --git a/Dockerfile b/Dockerfile index d915b702..2ecd119f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/libs/client-api/src/http.rs b/libs/client-api/src/http.rs index 2babfd20..9d5662bc 100644 --- a/libs/client-api/src/http.rs +++ b/libs/client-api/src/http.rs @@ -508,6 +508,7 @@ impl Client { let resp = self .http_client_with_auth(Method::POST, &url) .await? + .json(&()) .send() .await?; log_request_id(&resp);