@cgirard I'm getting the same as cgirard, which is (as far as i can see) the same one you linked for python2 (the issue you linked happens on python3). I debugged the issue and tracked it down to sqlalchemy, an going through my updates logs I realized it got updated to 1.2 not long ago; when downgraded it, worked like a charm.
Search Criteria
Package Details: flexget 3.13.5-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/flexget.git (read-only, click to copy) |
---|---|
Package Base: | flexget |
Description: | FlexGet is a program aimed to automate downloading or processing content (torrents, podcasts, etc.) from different sources like RSS-feeds, html-pages, various sites and more. |
Upstream URL: | https://github.com/Flexget/Flexget |
Licenses: | MIT |
Submitter: | jonkristian |
Maintainer: | evine |
Last Packager: | evine |
Votes: | 76 |
Popularity: | 0.22 |
First Submitted: | 2009-09-11 19:38 (UTC) |
Last Updated: | 2024-12-25 16:14 (UTC) |
Dependencies (81)
- python-aniso8601
- python-apschedulerAUR
- python-attrs
- python-autocommand (python-autocommand-gitAUR)
- python-babelfish
- python-beautifulsoup4
- python-blinker
- python-brotli (python-brotli-gitAUR)
- python-certifi
- python-charset-normalizer
- python-cheroot
- python-cherrypy
- python-click
- python-colorama (python-colorama-gitAUR)
- python-dateutil
- python-feedparser
- python-flask
- python-flask-compress
- python-flask-cors
- python-flask-login
- Show 61 more dependencies...
Required by (0)
Sources (6)
Latest Comments
« First ‹ Previous 1 2 3 4 5 6 7 8 9 .. 25 Next › Last »
asermax commented on 2018-01-17 00:46 (UTC)
highway commented on 2018-01-16 23:46 (UTC)
@asermax, thanks for the tip, i will downgrade to the older version as a temp fix!
@cgirard, it looks like the sqlalchemy issue we are seeing is different than the one reported. if you need more from me, let me know!
highway commented on 2018-01-16 23:43 (UTC) (edited on 2018-01-16 23:45 (UTC) by highway)
@cgirard -- i have two error messages
1) 018-01-16 18:40 CRITICAL manager - An unexpected crash has occurred. Writing crash report to .flexget/crash_report.2018.01.16.184005577878.log. Please verify you are running the latest version of flexget by using "flexget -V" from CLI or by using version_checker plugin at http://flexget.com/wiki/Plugins/version_checker. You are currently using version 2.10.48
2) https://gist.github.com/anonymous/775eb1b9a6333b45a4e4f527e8d58d59
cgirard commented on 2018-01-16 15:12 (UTC)
@highway @asermax: what error are you getting? Is it the same as this: https://github.com/Flexget/Flexget/issues/2058 ?
asermax commented on 2018-01-16 13:44 (UTC)
@highway yeah, it has something to do with the latest update on sqlalchemy. Currently flexget supports up to 1.1.x, so I'm not sure how to definitely fix it, but for now I downgraded to the latest 1.1.x version of sqlalchemy on arch and pinned it down on pacman.conf to avoid updating.
highway commented on 2018-01-15 01:48 (UTC)
Is anyone having errors about the series plugin being broken after say Jan 12 2018?
<deleted-account> commented on 2017-12-31 19:07 (UTC)
I get the following error when installing:
:: failed to verify python2-babelfish integrity :: failed to verify python2-paver integrity
Pinned Comments
evine commented on 2024-10-22 00:36 (UTC) (edited on 2024-10-26 00:26 (UTC) by evine)
@cmm11 I added this file
/usr/lib/systemd/system/flexget.service
with the intention of reducing the running permissions for users who use flexget-webui. Users using the webui can directly run command within the webui. If you have to run these commands from the command line, traditionalsu
cannot do it because the shell of theflexget
user is/usr/bin/nologin
and login is prohibited.You can run
sudo -u flexget flexget -c /var/lib/flexget/config.yml execute --task task_name
Or You can use the gosu that I just packaged to implement:
sudo gosu <user>:<group> <command>
, for example:sudo gosu flexget:flexget flexget -c /var/lib/flexget/config.yml execute --task task_name
.If you are using
/usr/lib/systemd/system/flexget.service
, you can add a alias in your shell rc file:alias flexget="sudo -u flexget /usr/bin/flexget -c /var/lib/flexget/config.yml
oralias flexget="sudo gosu flexget:flexget /usr/bin/flexget -c /var/lib/flexget/config.yml"
.evine commented on 2024-10-19 04:50 (UTC) (edited on 2024-10-22 01:53 (UTC) by evine)
After taking over Flexget, I had
flexget-webui
andflexget-webui-v1
inoptdepends
, you can install and enable webui if you need. When using webui, it is recommended to use/usr/lib/systemd/system/flexget.service
I have newly added./usr/lib/systemd/system/flexget.service
to run as a system user, the original methods that run as normal user still exists:/usr/lib/systemd/system/flexget@.service
and/usr/lib/systemd/user/flexget.service
.If upgrade fail, you should remove old
flexget
first, and reinstall.