mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
Fix UISP Suspension Flat Network
This commit is contained in:
parent
e36be12e4b
commit
825e87c4e3
@ -66,10 +66,10 @@ def buildFlatGraph():
|
||||
download = int(round(site['qos']['downloadSpeed']/1000000))
|
||||
upload = int(round(site['qos']['uploadSpeed']/1000000))
|
||||
if site['identification'] is not None and site['identification']['suspended'] is not None and site['identification']['suspended'] == True:
|
||||
if uisp_suspended_strategy() == "ignore":
|
||||
if uispSuspendedStrategy == "ignore":
|
||||
print("WARNING: Site " + name + " is suspended")
|
||||
continue
|
||||
if uisp_suspended_strategy() == "slow":
|
||||
if uispSuspendedStrategy == "slow":
|
||||
print("WARNING: Site " + name + " is suspended")
|
||||
download = 1
|
||||
upload = 1
|
||||
|
Loading…
Reference in New Issue
Block a user