2
0
mirror of https://github.com/openvswitch/ovs synced 2025-09-05 08:45:23 +00:00

reconnect: Rename CONNECT_IN_PROGRESS state to CONNECTING (like rconn).

reconnect uses the same connection state names as rconn with the exception of
the above. This commit makes their states identical, which should reduce
confusion for people debugging connection problems.
This commit is contained in:
Andrew Evans
2011-03-09 10:42:24 -08:00
parent 9ec4d255ac
commit c36cf65eda
3 changed files with 41 additions and 41 deletions

View File

@@ -72,7 +72,7 @@ class Reconnect(object):
return CONNECT
class ConnectInProgress(object):
name = "CONNECT_IN_PROGRESS"
name = "CONNECTING"
is_connected = False
@staticmethod