Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ianstanton committed Dec 6, 2023
1 parent 562730d commit fc83db4
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions tembo-operator/src/app_service/ingress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -447,10 +447,7 @@ pub async fn reconcile_ingress_tcp(
.await
{
Ok(_) => {
debug!(
"ns: {}, successfully deleted IngressRouteTCP: {}",
ns, &name
);
debug!("ns: {}, successfully deleted IngressRouteTCP: {}", ns, &name);
return Ok(());
}
Err(e) => {
Expand All @@ -470,10 +467,7 @@ pub async fn reconcile_ingress_tcp(
Ok(())
}
Err(e) => {
error!(
"Failed to update/apply IngressRouteTCP {}.{}: {}",
ns, &name, e
);
error!("Failed to update/apply IngressRouteTCP {}.{}: {}", ns, &name, e);
Err(e)
}
}
Expand Down

0 comments on commit fc83db4

Please sign in to comment.