mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-02 19:58:03 +00:00
Fixed Station not connected to applied channel issue
Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>
This commit is contained in:
@@ -974,13 +974,21 @@ class lf_libs:
|
|||||||
sta_dict = {}
|
sta_dict = {}
|
||||||
try:
|
try:
|
||||||
for sta in sta_name:
|
for sta in sta_name:
|
||||||
time.sleep(4)
|
|
||||||
sta_url = "port/" + str(sta.split(".")[0]) + "/" + str(sta.split(".")[1]) + "/" + str(sta.split(".")[2])
|
sta_url = "port/" + str(sta.split(".")[0]) + "/" + str(sta.split(".")[1]) + "/" + str(sta.split(".")[2])
|
||||||
station_info = self.json_get(sta_url)
|
station_info = self.json_get(sta_url)
|
||||||
dict_data = station_info["interface"]
|
dict_data = station_info["interface"]
|
||||||
temp_dict = {}
|
temp_dict = {}
|
||||||
for i in rows:
|
for i in rows:
|
||||||
temp_dict[i] = dict_data[i]
|
temp_dict[i] = dict_data[i]
|
||||||
|
if i == "channel":
|
||||||
|
if dict_data[i] == "-1":
|
||||||
|
self.local_realm.reset_port(sta)
|
||||||
|
time.sleep(5)
|
||||||
|
sta_url_ = "port/" + str(sta.split(".")[0]) + "/" + str(sta.split(".")[1]) + "/" + str(
|
||||||
|
sta.split(".")[2])
|
||||||
|
station_info_ = self.json_get(sta_url_)
|
||||||
|
dict_data_ = station_info_["interface"]
|
||||||
|
temp_dict[i] = dict_data_[i]
|
||||||
sta_dict[sta] = temp_dict
|
sta_dict[sta] = temp_dict
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.error(e)
|
logging.error(e)
|
||||||
|
|||||||
Reference in New Issue
Block a user