Tomas Barton
Tomas Barton
same issue with django 1.5.10. ChooJoy's fix works
@andrew-manger As the message say, lua files aren't on any of searched location. You've probably moved the main binary `lite` out out project's main directory.
That's pretty much the same, you can create a symlink to your build directory: ``` ln -s /home/yourdir/src/lite /usr/local/bin/lite ```
I've added `Makefile` in #257, but I haven't tested the Windows part. It should work on Linux/MacOS, though in order to properly install the package, there are more changes needed.
@booleanbetrayal Would it be possible to do a new release?
"Cannot read property 'resolve' of null" on $auth.validateToken() and "user_signed_in?" always false
The issue seems to be fixed by 888f251157e1d24ce35e6f466e6ff5a22c31bd36 which wasn't released yet, you can easily test it: ``` bower install https://github.com/lynndylanhurley/ng-token-auth.git#master ``` @booleanbetrayal @lynndylanhurley Could you tag a new release,...
Also needed for Debian 8. @patric-r could you merge this patch?
@cartooku Have you configured [WAL archiving](https://postgrespro.com/docs/postgrespro/13/app-pgprobackup#PBK-SETTING-UP-CONTINUOUS-WAL-ARCHIVING)? Is there any error in logs? on database server: ``` archive_command = '"install_dir/pg_probackup" archive-push -B "backup_dir" --instance instance_name --wal-file-name=%f [remote_options]' ```
Arrgh, right, now it make sense :disappointed: Maybe the description could be improved a bit. The timeout is specified in minutes or seconds? I thought it was a timeout to...
@mischaqu You need to make sure that all the changes on `primary` are synced to WAL. There are multiple [configuration flags](https://www.postgresql.org/docs/14/runtime-config-wal.html), that migh influence this, e.g.: - `wal_level` - `synchronous_commit`...