astro-stan
astro-stan
I realize this is not an easy feature to add but what is the current status on this? 2-way sync is the only thing that is preventing m from migrating...
4 years later I have the same problem... Here is a snippet from the console: ``` >>> user.has_perm('myapp.view_mymodel') False >>> assign_perm('myapp.view_mymodel', user) >>> user.has_perm('myapp.view_mymodel') False >>> assign_perm('myapp.view_mymodel', user) >>> assign_perm('myapp.view_mymodel',...
Today I also tried to reproduce the problem as a shell script: ``` #!/bin/sh sleep 30 {EXTRA_ENVS} /path/to/binary/binary.bin & PID=$! sleep 5 criu dump -t ${PID} --tcp-established --shell-job -D /path/to/checkpoint/dir...
I am not sure what I am looking for exactly but in several places there are criu segfaults. For example: ``` .... [275655.817563] br-de6afa129f06: port 6(vethb5bad44) entered forwarding state [275655.850233]...
I built it from the 3.17.1 tag. Here are the relevant parts of the Dockerfile: ``` FROM python:3.9-alpine3.15 as builder ############################### CRIU Compilation ############################### ARG SUPPORT_CHECKPOINT_RESTORE=1 ARG CRIU_VERSION=v3.17.1 RUN if...
Just modified the docker image to use `python:3.9-bullseye` as base for all stages. Everything else is the same - building criu from the same tag, running the container with the...
If it is helpful, I can also build CRIU with extra debugging information. For example I can checkout a particular commit that adds extra debug logs around where it the...
I can build it with debug symbols (if I understand correctly it is as simple as passing `DEBUG=1` to make), but I will need a short guide on how to...
Built with debug symbols, set `ulimit -c` to unlimited and set an appropriate directory for the core dump file. But criu does not core dump on restore. How can I...
Sorry, I do not have an easy way to test this with the other bindings (need to create a new container that has them). But I am pretty sure they...