Fellow Reports -- September 2020

2020-09-08 Thread Carlton Gibson
Hi all. Calendar Week 36 -- ending 06 September. Released Django versions 3.1.1, 3.0.10 and 2.2.16. Triaged: https://code.djangoproject.com/ticket/30952 -- KeyError: '_password_reset_token' during password reset. (needsinfo) https://code.djangoproject.com/ticket/31974 -- SplitDateTimeWidge

Re: command for stopping server

2020-09-08 Thread Adam Johnson
A little tip Tim - your one-liner can also be achieved with the pkill utility: pkill -u $USER -f manage.py runserver . The user matching with -u $USER flag is cautious but probably unnecessary. https://linux.die.net/man/1/pkill On Tue, 8 Sep 2020 at 10:48, Tim Allen wrote: > The advice here is

Re: command for stopping server

2020-09-08 Thread Tim Allen
The advice here is solid, but to answer the initial query... i created a one liner to kill any runservers from my current user, as they can get lost in my sea of terminals. This may help: alias kill-runserver="ps -eaf | grep 'manage.py runserver' | grep "'$USER'" | grep -v grep | awk '{print "'