Marti Raudsepp

Results 237 comments of Marti Raudsepp

I think that won't work. A bigger issue is that with this syntax: ```python class MyModel(models.Model): field1 = deprecate_field(models.CharField()) ``` The `deprecate_field()` function is executed at import-time. Imports may come...

> I read through those quickly when I was working on this. It might be safe to drop Rust panics to ERROR, we can experiment with that. I don't mind...

> Can you describe in more detail the situations you're concerned about? Clearly any such situation is a bug and bugs by their very nature are often surprising. :) An...

Thanks! I think it's worth stressing that bumping the edition number breaks compilation with older Rust versions, even if the project does not rely on any of the new features....

Hi! A some things to try: * What Linux distribution and version are you using? * Does it work if you run `ego --user=user_2 bash` and then run `teams` from...

Great! I'm still curious though, why your original command doesn't work. It's probably something that can be improved in `ego`. PS: This is the first user feedback I've received. It's...

OK I tried it and I see the issue now. The `teams` command forks a background process and exits immediately. Since the command exits, the session quits and systemd tears...

Jotting down notes about this issue... * `teams` escapes the process hierarchy by double-forking, becoming an orphan process. * Even with a systemd user session, on my system, orphans inherit...

This is still very rough. Getting systemd to run in Docker is a PITA, there might be a better way.

Maybe this is useful: https://zauner.nllk.net/post/0038-running-systemd-inside-a-docker-container/