You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have checked the existing issues to avoid duplicates
I have redacted any info hashes and content metadata from any logs or screenshots attached to this issue
Describe the bug
When attempting to load item results, the following error occurs repeatedly:
Error loading item results: ERROR: relation "torrent_contents" does not exist (SQLSTATE 42P01)
failed to get count for key 'content_type': ERROR: relation "torrent_contents" does not exist (SQLSTATE 42P01)
To Reproduce
Steps to reproduce the behavior:
Attempt to load item results.
Observe the error related to the torrent_contents relation.
Expected behavior
Item results should load without encountering database errors. The application should be able to retrieve counts for content_type without issues.
Environment Information (Required)
Bitmagnet version: 0.9.5
OS and version: archcraft 6.11.3-arch1-1
Browser and version (if issue is with WebUI): Edge 126.0.2592.87
Additional context
This error seems to indicate that the torrent_contents relation (table) does not exist in the database. It might be a missing or incorrectly configured database migration.
Docker Compose Configuration
Here is the docker-compose.yml configuration I am using:
services:
bitmagnet:
image: ghcr.io/bitmagnet-io/bitmagnet:latestcontainer_name: bitmagnetports:
# API and WebUI port:
- "3333:3333"# BitTorrent ports:
- "3334:3334/tcp"
- "3334:3334/udp"restart: unless-stoppedenvironment:
- POSTGRES_HOST=postgres
- POSTGRES_PASSWORD=postgres# - TMDB_API_KEY=your_api_keycommand:
- worker
- run
- --keys=http_server
- --keys=queue_server# disable the next line to run without DHT crawler
- --keys=dht_crawlerdepends_on:
postgres:
condition: service_healthypostgres:
image: postgres:16-alpinecontainer_name: bitmagnet-postgresvolumes:
- ./data/postgres:/var/lib/postgresql/dataports:
- "5432:5432"restart: unless-stoppedenvironment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=bitmagnet
- PGUSER=postgresshm_size: 1ghealthcheck:
test:
- CMD-SHELL
- pg_isreadystart_period: 20sinterval: 10s
The text was updated successfully, but these errors were encountered:
Describe the bug
When attempting to load item results, the following error occurs repeatedly:
To Reproduce
Steps to reproduce the behavior:
torrent_contents
relation.Expected behavior
Item results should load without encountering database errors. The application should be able to retrieve counts for
content_type
without issues.Environment Information (Required)
0.9.5
archcraft 6.11.3-arch1-1
Edge 126.0.2592.87
Additional context
This error seems to indicate that the
torrent_contents
relation (table) does not exist in the database. It might be a missing or incorrectly configured database migration.Docker Compose Configuration
Here is the
docker-compose.yml
configuration I am using:The text was updated successfully, but these errors were encountered: