Laurynas Alekna

Results 12 comments of Laurynas Alekna

> ssages to reclaim some space back. How can i execute this command "delete from messages where time < strftime('%s', datetime('now', '-365 day'))*1000;" to sqlite? Commandline? Yes, you need to...

@richrd, not exactly. Have a look at https://www.sqlite.org/fileformat.html and https://sqlite.org/lang_vacuum.html if you're curious.

I had some luck implementing this using `Retrying` context manager. To give you an idea here's the sample code: ```python import random from datetime import datetime from tenacity import Retrying,...

Hi @jmattheis, thanks for your reply. 1. It would be nice if default #90 behavior was configurable in `Settings`. Can't imagine sane user whose preference is absolute time clicking on...

@RemiRigal sounds good to me. Are you willing to implement it?

@RemiRigal how's your progress with this feature?

Correct, @cyb3rko. Thank you! :)

How about: - making redirect code configurable - if not configured, making `HTTP/302` a default redirect code

Works fine for me. ```bash $ docker run --name=myproxy -d -p 80:80 -v /var/run/docker.sock:/tmp/docker.sock -t jwilder/nginx-proxy $ docker run --name=test -e VIRTUAL_HOST=whoami.myowndomain.com -t -d containous/whoami $ curl -i -H "Host:...