This commit is contained in:
Graham Christensen 2017-11-19 16:52:15 -05:00
parent 2cfdc39d3e
commit 2749bb4bc9
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C
2 changed files with 4 additions and 4 deletions

View file

@ -95,12 +95,12 @@ impl OutPathDiff {
if let Some(cur) = self.current {
if let Some(orig) = self.original {
for key in cur.keys() {
debug!("Checking out {}", key);
trace!("Checking out {}", key);
if cur.get(key) != orig.get(key) {
debug!(" {:?} != {:?}", cur.get(key), orig.get(key));
trace!(" {:?} != {:?}", cur.get(key), orig.get(key));
rebuild.push(key.clone())
} else {
debug!(" {:?} == {:?}", cur.get(key), orig.get(key));
trace!(" {:?} == {:?}", cur.get(key), orig.get(key));
}
}

View file

@ -305,7 +305,7 @@ impl worker::SimpleWorker for MassRebuildWorker {
} else {
overall_status.set_with_description(
"Complete, with errors",
hubcaps::statuses::State::Failed
hubcaps::statuses::State::Failure
);
}