Formatting
[?]
Jun 2, 2021, 12:17 PM
HJLDPP5JXMHXW63BGB2YMQXRTBCH3SFNMOV276Y2MG4VZEUWVQBQCDependencies
- [2]
GFED4ORAImprove error handling for nonexistent channels - [3]
CCLLB7OIUpgrading to Sanakirja 0.15 + version bump - [4]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting). - [5]
MU5GSJAWPartial push and pull (WARNING: breaks the existing protocol) - [6]
GYXIF25TProper parsing of URLs - [*]
FBXYP7QMForgot to add remote::http
Change contents
- replacement in pijul/src/remote/local.rs at line 55
debug!("no remote channel named {:?}", self.channel);return Ok(HashSet::new());debug!("Local::download_changelist found no channel named {:?}",self.channel);bail!("No channel {} found for remote {}", self.name, self.channel) - replacement in pijul/src/remote/http.rs at line 186
Err(_) if status.as_u16() == 404 => bail!("Repository `{}` not found (404)", self.url),Err(_) => bail!("Http request failed with status code: {}", status)Err(_) if status.as_u16() == 404 => {bail!("Repository `{}` not found (404)", self.url)}Err(_) => bail!("Http request failed with status code: {}", status),