Remove Disconnected link state

Dynamically flipping from Established
to Disconnected is not the intended
usage of InstanceLink State.

- Link state starts in Adding and becomes
Established once any control node first sees the link
is in the status KnownConnectionCosts
This commit is contained in:
Seth Foster
2023-08-04 12:02:03 -04:00
committed by Seth Foster
parent ad96a72ebe
commit 3e8202590c
7 changed files with 8 additions and 36 deletions

View File

@@ -68,7 +68,6 @@ class InstanceLink(BaseModel):
class States(models.TextChoices):
ADDING = 'adding', _('Adding')
ESTABLISHED = 'established', _('Established')
DISCONNECTED = 'disconnected', _('Disconnected')
REMOVING = 'removing', _('Removing')
link_state = models.CharField(