Skip to content
Snippets Groups Projects
Verified Commit 4c83e738 authored by Karel van Klink's avatar Karel van Klink :smiley_cat:
Browse files

Take subscription out of sync when validating and edge port

parent a7b696fa
No related branches found
No related tags found
1 merge request!325Sanitise all extra vars that are sent to LSO
Pipeline #90902 passed
...@@ -6,7 +6,7 @@ from orchestrator.targets import Target ...@@ -6,7 +6,7 @@ from orchestrator.targets import Target
from orchestrator.types import State, UUIDstr from orchestrator.types import State, UUIDstr
from orchestrator.utils.errors import ProcessFailureError from orchestrator.utils.errors import ProcessFailureError
from orchestrator.workflow import StepList, begin, done, step, workflow 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 orchestrator.workflows.utils import wrap_modify_initial_input_form
from gso.products.product_types.edge_port import EdgePort from gso.products.product_types.edge_port import EdgePort
...@@ -85,6 +85,7 @@ def validate_edge_port() -> StepList: ...@@ -85,6 +85,7 @@ def validate_edge_port() -> StepList:
return ( return (
begin begin
>> store_process_subscription(Target.SYSTEM) >> store_process_subscription(Target.SYSTEM)
>> unsync
>> prepare_state >> prepare_state
>> verify_netbox_entries >> verify_netbox_entries
>> anonymous_lso_interaction(verify_base_config) >> anonymous_lso_interaction(verify_base_config)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment