mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2024-11-25 17:50:16 -06:00
Solve PtMP issue bug
This commit is contained in:
parent
ea883aebb8
commit
fc7dd8aeb0
@ -22,6 +22,10 @@ try:
|
|||||||
from ispConfig import ltu_capacity
|
from ispConfig import ltu_capacity
|
||||||
except:
|
except:
|
||||||
ltu_capacity = 0.90
|
ltu_capacity = 0.90
|
||||||
|
try:
|
||||||
|
from ispConfig import usePtMPasParent
|
||||||
|
except:
|
||||||
|
usePtMPasParent = False
|
||||||
|
|
||||||
def uispRequest(target):
|
def uispRequest(target):
|
||||||
# Sends an HTTP request to UISP and returns the
|
# Sends an HTTP request to UISP and returns the
|
||||||
@ -341,6 +345,7 @@ def findNodesBranchedOffPtMP(siteList, dataLinks, sites, rootSite, foundAirFiber
|
|||||||
'upload': upload,
|
'upload': upload,
|
||||||
parent: apID
|
parent: apID
|
||||||
}
|
}
|
||||||
|
if usePtMPasParent:
|
||||||
site['parent'] = apID
|
site['parent'] = apID
|
||||||
print('Site ' + name + ' will use PtMP AP as parent.')
|
print('Site ' + name + ' will use PtMP AP as parent.')
|
||||||
return siteList, nodeOffPtMP
|
return siteList, nodeOffPtMP
|
||||||
|
Loading…
Reference in New Issue
Block a user