Skip to content

Commit cd974ca

Browse files
committed
wip
1 parent 6453536 commit cd974ca

File tree

1 file changed

+5
-2
lines changed
  • nexus/reconfigurator/execution/src

1 file changed

+5
-2
lines changed

nexus/reconfigurator/execution/src/lib.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,15 +380,18 @@ fn register_plumb_firewall_rules_step<'a>(
380380
ExecutionStepId::Ensure,
381381
"Plumb service firewall rules",
382382
move |_cx| async move {
383-
nexus_networking::plumb_service_firewall_rules(
383+
if let Err(e) = nexus_networking::plumb_service_firewall_rules(
384384
datastore,
385385
&opctx,
386386
&[],
387387
&opctx,
388388
&opctx.log,
389389
)
390390
.await
391-
.context("failed to plumb service firewall rules to sleds")?;
391+
.context("failed to plumb service firewall rules to sleds")
392+
{
393+
return StepWarning::new((), e.to_string()).into();
394+
}
392395

393396
StepSuccess::new(()).into()
394397
},

0 commit comments

Comments
 (0)