Skip to content

Commit

Permalink
feat(services/memcached): change to binary protocal
Browse files Browse the repository at this point in the history
  • Loading branch information
hoslo committed Feb 23, 2024
2 parents 5293856 + ae985b9 commit 2de5194
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/services/webdav/backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ impl Accessor for WebdavBackend {
return Err(Error::new(
ErrorKind::NotFound,
"Failed getting item stat: response field was not found",
));
))
}
};

Expand Down Expand Up @@ -379,7 +379,7 @@ impl Accessor for WebdavBackend {
let result: Multistatus =
quick_xml::de::from_reader(bs.reader()).map_err(new_xml_deserialize_error)?;

let l = WebdavLister::new(&self.endpoint, &self.root, path, result);
let l = WebdavLister::new(&self.root, path, result);

Ok((RpList::default(), Some(oio::PageLister::new(l))))
}
Expand Down

0 comments on commit 2de5194

Please sign in to comment.