membphis opened a new issue #1041:
URL: https://github.com/apache/apisix-dashboard/issues/1041
here are the routes in my `etcd`, I created them by a python script:
```python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import grequests
payloads = {}
for id in range(100):
payload = {
"uri": "/test_%s"%id,
"upstream": {
"type": "roundrobin",
"nodes": {
"127.0.0.1:7000": 1
}
}
}
payloads[id]=payload
unsent_request = []
header = {"X-API-KEY":"edd1c9f034335f136f87ad84b625c8f1"}
for id in payloads:
print(id)
unsent_request.append(grequests.post("http://127.0.0.1:9080/apisix/admin/routes/"
,json=payloads[id], headers = header))
responses = grequests.map(unsent_request)
for response in responses:
print(response.content)
response.close()
```
the Manager API can not load them, here are the routes in etcd:
[routes.log](https://github.com/apache/apisix-dashboard/files/5684342/mm.log)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]