mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-02 11:48:03 +00:00
added number of max stations per radio to error message
This commit is contained in:
@@ -292,7 +292,7 @@ def main():
|
||||
for radio in radios:
|
||||
number_of_stations = int(number_of_stations_per_radio_list[index])
|
||||
if number_of_stations > MAX_NUMBER_OF_STATIONS:
|
||||
print("number of stations per radio exceeded")
|
||||
print("number of stations per radio exceeded max of : {}".format(MAX_NUMBER_OF_STATIONS))
|
||||
quit(1)
|
||||
station_list = LFUtils.portNameSeries(prefix_="sta", start_id_= 1 + index*1000, end_id_= number_of_stations + index*1000, padding_number_=10000)
|
||||
station_lists.append(station_list)
|
||||
|
||||
Reference in New Issue
Block a user