Skip to content

Commit

Permalink
update registry address
Browse files Browse the repository at this point in the history
  • Loading branch information
pieroit committed Sep 4, 2023
1 parent 84f5555 commit 2ea5448
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/cat/routes/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@

async def get_registry_list():
try:
response = await requests.get("https://plugins.cheshirecat.ai/plugins?page=1&page_size=7000")
response = requests.get("https://registry.cheshirecat.ai/plugins?page=1&page_size=1000")
if response.status_code == 200:
return response.json()["plugins"]
else:
return []
except requests.exceptions.RequestException as e:
#log(e, "ERROR")
except Exception as e:
log(e, "ERROR")
return []

# GET plugins
Expand Down

0 comments on commit 2ea5448

Please sign in to comment.