Made changes to aci_rest module to only add annotation when the value is a dictionary and changed the way the cookie is retrieved in the httpapi plugin (DCNE-176) #689
For now the only case we've seen where imdata is not in the response is when the instance of the response is of type list.
We do the following to cover that particular case:
if isinstance(jsondata, list):
self.imdata = jsondata
self.totalCount = len(jsondata)
With the above code the response is visible in the output when the System API endpoint is called upon.
For now the only case we've seen where imdata is not in the response is when the instance of the response is of type list. We do the following to cover that particular case:
With the above code the response is visible in the output when the System API endpoint is called upon.