We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6453536 commit cd974caCopy full SHA for cd974ca
nexus/reconfigurator/execution/src/lib.rs
@@ -380,15 +380,18 @@ fn register_plumb_firewall_rules_step<'a>(
380
ExecutionStepId::Ensure,
381
"Plumb service firewall rules",
382
move |_cx| async move {
383
- nexus_networking::plumb_service_firewall_rules(
+ if let Err(e) = nexus_networking::plumb_service_firewall_rules(
384
datastore,
385
&opctx,
386
&[],
387
388
&opctx.log,
389
)
390
.await
391
- .context("failed to plumb service firewall rules to sleds")?;
+ .context("failed to plumb service firewall rules to sleds")
392
+ {
393
+ return StepWarning::new((), e.to_string()).into();
394
+ }
395
396
StepSuccess::new(()).into()
397
},
0 commit comments