fix(local-deployer): allow single endpoint port registration

This commit is contained in:
andrussal 2026-02-17 06:07:23 +01:00
parent 96842b8628
commit 603437e0dd

View File

@ -182,7 +182,7 @@ impl<E: LocalDeployerEnv> NodeManager<E> {
.collect()
};
if ports.len() <= 1 {
if ports.is_empty() {
return Ok(());
}