This commit is contained in:
asafmahlev 2024-04-11 10:45:37 +03:00
Родитель 82bcc39709
Коммит 5bddbcf26c
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -77,11 +77,7 @@ impl QueryRunner {
let bytes = bytes::Bytes::from(serde_json::to_string(&body)?);
request.set_body(bytes);
let response = self
.client
.pipeline()
.send(&context, &mut request)
.await?;
let response = self.client.pipeline().send(&context, &mut request).await?;
Ok(response)
}