Fix clippy linting warnings
This commit is contained in:
parent
f3f37d9372
commit
48a8d7b6eb
1 changed files with 1 additions and 1 deletions
|
@ -505,7 +505,7 @@ async fn router(
|
||||||
let request = client
|
let request = client
|
||||||
.post(path)
|
.post(path)
|
||||||
.headers(headers.clone())
|
.headers(headers.clone())
|
||||||
.auth(&auth)
|
.auth(auth)
|
||||||
.header(CONTENT_TYPE, "application/octet-stream");
|
.header(CONTENT_TYPE, "application/octet-stream");
|
||||||
let value = import(request, file).await?;
|
let value = import(request, file).await?;
|
||||||
Ok(DbResponse::Other(value))
|
Ok(DbResponse::Other(value))
|
||||||
|
|
Loading…
Reference in a new issue