Ensure client is active before attempting to pull plan info
This commit is contained in:
Robert Chacón
2023-02-27 16:57:30 -07:00
committed by GitHub
parent da42238332
commit 912099cf3d

View File

@@ -70,6 +70,7 @@ def createShaper():
# devices on a shared tariff. Creating each service as a combined
# entity including the customer, to be on the safe side.
for customerJson in customers:
if customerJson['status'] == 'active':
services = spylnxRequest("admin/customers/customer/" + customerJson["id"] + "/internet-services", headers)
for serviceJson in services:
combinedId = "c_" + str(customerJson["id"]) + "_s_" + str(serviceJson["id"])