diff --git a/gso/workflows/edge_port/validate_edge_port.py b/gso/workflows/edge_port/validate_edge_port.py
index af82afee1bb394e836ba5cc71891c4840881c5c0..6932b2be338c076e6a3299cb98a727c0578cb990 100644
--- a/gso/workflows/edge_port/validate_edge_port.py
+++ b/gso/workflows/edge_port/validate_edge_port.py
@@ -6,7 +6,7 @@ from orchestrator.targets import Target
 from orchestrator.types import State, UUIDstr
 from orchestrator.utils.errors import ProcessFailureError
 from orchestrator.workflow import StepList, begin, done, step, workflow
-from orchestrator.workflows.steps import resync, store_process_subscription
+from orchestrator.workflows.steps import resync, store_process_subscription, unsync
 from orchestrator.workflows.utils import wrap_modify_initial_input_form
 
 from gso.products.product_types.edge_port import EdgePort
@@ -85,6 +85,7 @@ def validate_edge_port() -> StepList:
     return (
         begin
         >> store_process_subscription(Target.SYSTEM)
+        >> unsync
         >> prepare_state
         >> verify_netbox_entries
         >> anonymous_lso_interaction(verify_base_config)