summaryrefslogtreecommitdiff
path: root/src/client.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-04-19 04:53:35 +0000
committerLars Wirzenius <liw@liw.fi>2022-04-19 04:53:35 +0000
commit8882409f31ddb4d77cb94dd6c57f27af1b3310d5 (patch)
tree62bb67504c47747f8ce202f4eb4121bb3d051223 /src/client.rs
parent8da3f80d296dc1891159fe4fdc1787cecd9730d0 (diff)
parent18c0f4afab29e17c050208234becbfb5e2973746 (diff)
downloadobnam2-8882409f31ddb4d77cb94dd6c57f27af1b3310d5.tar.gz
Merge branch 'liw/checksum-types-try2' into 'main'
add support for migrating to new checksum types Closes #203 See merge request obnam/obnam!228
Diffstat (limited to 'src/client.rs')
-rw-r--r--src/client.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client.rs b/src/client.rs
index c5d66c1..bed5f1e 100644
--- a/src/client.rs
+++ b/src/client.rs
@@ -9,6 +9,7 @@ use crate::cipher::{CipherEngine, CipherError};
use crate::config::{ClientConfig, ClientConfigError};
use crate::generation::{FinishedGeneration, GenId, LocalGeneration, LocalGenerationError};
use crate::genlist::GenerationList;
+use crate::label::Label;
use log::{debug, error, info};
use reqwest::header::HeaderMap;
@@ -195,7 +196,8 @@ impl BackupClient {
}
async fn find_client_trusts(&self) -> Result<Vec<ChunkId>, ClientError> {
- let body = match self.get("", &[("label", "client-trust")]).await {
+ let label = Label::literal("client-trust").serialize();
+ let body = match self.get("", &[("label", &label)]).await {
Ok((_, body)) => body,
Err(err) => return Err(err),
};