forked from the-distro/ofborg
fixups
This commit is contained in:
parent
2cfdc39d3e
commit
2749bb4bc9
|
@ -95,12 +95,12 @@ impl OutPathDiff {
|
||||||
if let Some(cur) = self.current {
|
if let Some(cur) = self.current {
|
||||||
if let Some(orig) = self.original {
|
if let Some(orig) = self.original {
|
||||||
for key in cur.keys() {
|
for key in cur.keys() {
|
||||||
debug!("Checking out {}", key);
|
trace!("Checking out {}", key);
|
||||||
if cur.get(key) != orig.get(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())
|
rebuild.push(key.clone())
|
||||||
} else {
|
} else {
|
||||||
debug!(" {:?} == {:?}", cur.get(key), orig.get(key));
|
trace!(" {:?} == {:?}", cur.get(key), orig.get(key));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -305,7 +305,7 @@ impl worker::SimpleWorker for MassRebuildWorker {
|
||||||
} else {
|
} else {
|
||||||
overall_status.set_with_description(
|
overall_status.set_with_description(
|
||||||
"Complete, with errors",
|
"Complete, with errors",
|
||||||
hubcaps::statuses::State::Failed
|
hubcaps::statuses::State::Failure
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue