Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ def check_gen_cx(self):
return False # Handle case where endpoint data is not available
endp_status = generic_endpoint["endpoint"].get("status", "")
# If the endpoint status is not 'Stopped' or 'WAITING', return False
if endp_status not in ["Stopped", "WAITING"]:
if endp_status not in ["Stopped", "WAITING", "FTM_WAIT", "NO-CX"]:
return False
# If all endpoints are in 'Stopped' or 'WAITING', return True
return True
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ def check_gen_cx(self):

endp_status = generic_endpoint["endpoint"].get("status", "")

if endp_status not in ["Stopped", "WAITING", "NO-CX"]:
if endp_status not in ["Stopped", "WAITING", "NO-CX", "FTM_WAIT"]:
return False

return True
Expand Down
Loading