NeonN
Neon15mo ago
8 replies
static-pink

Getting unexpected error on fetching data from database

Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/discord/ext/commands/core.py", line 235, in wrapped
    ret = await coro(*args, **kwargs)
  File "/root/cogs/bot.py", line 393, in botinfo
    re = await self.bot.db.fetch("SELECT user_id FROM Owner")
  File "/usr/local/lib/python3.10/dist-packages/asyncpg/pool.py", line 569, in fetch
    async with self.acquire() as con:
  File "/usr/local/lib/python3.10/dist-packages/asyncpg/pool.py", line 981, in __aenter__
    self.connection = await self.pool._acquire(self.timeout)
  File "/usr/local/lib/python3.10/dist-packages/asyncpg/pool.py", line 821, in _acquire
    return await _acquire_impl()
  File "/usr/local/lib/python3.10/dist-packages/asyncpg/pool.py", line 806, in _acquire_impl
    proxy = await ch.acquire()  # type: PoolConnectionProxy
  File "/usr/local/lib/python3.10/dist-packages/asyncpg/pool.py", line 136, in acquire
    await self.connect()
  File "/usr/local/lib/python3.10/dist-packages/asyncpg/pool.py", line 128, in connect
    self._con = await self._pool._get_new_connection()
asyncpg.exceptions.InternalServerError: Your project has exceeded the data transfer quota. Upgrade your plan to increase limits.

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/jishaku/features/invocation.py", line 168, in jsk_debug
    await alt_ctx.command.invoke(alt_ctx)
  File "/usr/local/lib/python3.10/dist-packages/discord/ext/commands/core.py", line 1029, in invoke
    await injected(*ctx.args, **ctx.kwargs)  # type: ignore
  File "/usr/local/lib/python3.10/dist-packages/discord/ext/commands/core.py", line 244, in wrapped
    raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: InternalServerError: Your project has exceeded the data transfer quota. Upgrade your plan to increase limits.
Was this page helpful?