Skip to content

[BUG] v1.5.3-ls329 is broken #161

@RacerBas

Description

@RacerBas

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

When I update to v1.5.3-ls329 the WEB-UI never comes online but when I downgrade to v1.5.3-ls328 everything starts working again. I suspect this message is related:
/app/bazarr/bin/bazarr/../libs/python_anticaptcha/__init__.py:2: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. from pkg_resources import get_distribution, DistributionNotFound
seeing how the release before it is fairly close to the mentioned date I'm guessing that pkg_resources does not work anymore in v1.5.3-ls329

I made sure to remove all the containers and the caching files and rebuilt all the containers from online. Once you change the tag to the previous version it instantly works again.

Expected Behavior

Bazarr starting child process with PID 164... /app/bazarr/bin/bazarr/../libs/python_anticaptcha/__init__.py:2: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81. from pkg_resources import get_distribution, DistributionNotFound 2025-12-30 11:42:55,940 - root (7b959675ab28) : INFO (scheduler:77) - Scheduler will use this timezone: Europe/Amsterdam Connection to localhost (127.0.0.1) 6767 port [tcp/*] succeeded! [ls.io-init] done. 2025-12-30 11:43:03,432 - root (7b959675ab28) : INFO (main:74) - Interactive jobs queue started and waiting for tasks 2025-12-30 11:43:03,437 - root (7b956fbcbb30) : INFO (signalr_client:122) - BAZARR trying to connect to Sonarr SignalR feed... 2025-12-30 11:43:03,443 - root (7b956f99ab30) : INFO (signalr_client:189) - BAZARR trying to connect to Radarr SignalR feed... 2025-12-30 11:43:03,444 - waitress (7b959675ab28) : INFO (wasyncore:485) - BAZARR is started and waiting for requests on: http://***.***.***.***:6767 2025-12-30 11:43:03,501 - root (7b956f769b30) : INFO (signalr_client:217) - BAZARR SignalR client for Radarr is connected and waiting for events. 2025-12-30 11:43:03,517 - root (7b956f99ab30) : INFO (signalr_client:150) - BAZARR SignalR client for Sonarr is connected and waiting for events. 2025-12-30 11:43:13,015 - root (7b956f0d6b30) : INFO (get_providers:204) - Using podnapisi again after 1 hour, (disabled because: TooManyRequests)

Steps To Reproduce

in docker compose change image: linuxserver/bazarr:v1.5.3-ls328 to image: linuxserver/bazarr:v1.5.3-ls329 and the container stops booting infinitely (days/hours) with only this:
`───────────────────────────────────────
Linuxserver.io version: v1.5.3-ls329
Build-date: 2025-12-23T21:32:13+00:00
───────────────────────────────────────

[custom-init] No custom files found, skipping...
Bazarr starting child process with PID 164...
/app/bazarr/bin/bazarr/../libs/python_anticaptcha/init.py:2: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.
from pkg_resources import get_distribution, DistributionNotFound
`

Environment

- OS: Ubuntu Server 24.04 minimal
- How docker service was installed:
sudo install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg
echo \
  "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
  "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update && sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

CPU architecture

x86-64

Docker creation

services:
  bazarr:
    image: linuxserver/bazarr
    container_name: bazarr
    environment:
      - PUID=$PUID
      - PGID=$PGID
      - TZ=$TZ
    ports:
      - 6767:6767
    restart: unless-stopped

Container logs

[migrations] started
[migrations] no migrations found
usermod: user abc is currently used by process 1
───────────────────────────────────────

      ██╗     ███████╗██╗ ██████╗
      ██║     ██╔════╝██║██╔═══██╗
      ██║     ███████╗██║██║   ██║
      ██║     ╚════██║██║██║   ██║
      ███████╗███████║██║╚██████╔╝
      ╚══════╝╚══════╝╚═╝ ╚═════╝

   Brought to you by linuxserver.io
───────────────────────────────────────

To support the app dev(s) visit:
Bazarr: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XHHRWXT9YB7WE&source=url

To support LSIO projects visit:
https://www.linuxserver.io/donate/

───────────────────────────────────────
GID/UID
───────────────────────────────────────

User UID:    1000
User GID:    1000
───────────────────────────────────────
Linuxserver.io version: v1.5.3-ls329
Build-date: 2025-12-23T21:32:13+00:00
───────────────────────────────────────

[custom-init] No custom files found, skipping...
Bazarr starting child process with PID 164...
/app/bazarr/bin/bazarr/../libs/python_anticaptcha/__init__.py:2: UserWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html. The pkg_resources package is slated for removal as early as 2025-11-30. Refrain from using this package or pin to Setuptools<81.
  from pkg_resources import get_distribution, DistributionNotFound

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    Status

    Done

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions