Ross Patterson

Results 176 comments of Ross Patterson

I'd be happy to submit a PR with changes to the Jellyfin Traefik docs if this change would be welcome. LMK.

> Pull requests are always welcome! Of course, but would this change in particular be preferred to the current docs, @nielsvanvelzen? I don't want to put the time into writing...

In the hopes of saving others some time, after the recent upgrade to 10.9, Jellyfin changed the way it discovers which IP addresses to bind to which means it stopped...

> I've never used Traefik myself so I can't say what is better. Right, so when someone else *can* say, LMK.

> This is a Docker issue. Got a link, @stivyw?

> They changed the docker compose documentation to create sub directories after create the volume. So I think that's not a real problem, is only because the docker does not...

> BUT When volume is external, it works: Ah, thanks for the workaround! > So, I think maybe this is a `docker-compose` issue. [docker/compose#12075](https://github.com/docker/compose/issues/12075) (I opened this now) Thanks for...

I'm guessing this is because Prospector [hard codes the vulture checks to perform](https://github.com/PyCQA/prospector/blob/master/prospector/tools/vulture/__init__.py#L43-L46)? Maybe it would be best to find someway to let Vulture define the list of checks it...

Soon, I need to add notifications to a Python CLI utility. I use and love `ntfy` for notifications from my shell, so I intend to use it in that project...

In case it helps anyone else, I'm using the following to workaround this: ``` if __name__ == "__main__": logging.basicConfig(level=logging.INFO) if not DEBUG: logging.getLogger("JELLYFIN").setLevel(logging.WARNING) sys.exit(main()) ```