Replay/Debug container settings? #954
-
Is the replay/debug container you can SSH into given more resources than the default? Curious as my |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Is there something different that might impact signals? I maxed out the RAM that would let me to 8000MB for the environment, and it still times out as the assignment is a shell not sure if something is impacting signals. I don't think it's the case, but strangely, it evaluates fine when in the debug replay but not in the grading run. |
Beta Was this translation helpful? Give feedback.
-
In theory, when SSH debug is enabled, the hard timeout is set to 30min instead of the specified value, and that's the only difference for running the container. In practice, a few differences remain and come from the fact that the session is opened and the software is run through SSH. The most common issue is that SSH tends to set a different shell environment to better fit your local settings. Therefore the set of environment variables may differ. Some graphical software that have CLI sometimes still look for the X display settings that may be sent through SSH, without using it. There could also be subtleties if the software run has different behaviour in case no pseudo-TTY is attached or in a non-interactive shell and actually waits for something. Maybe you can get some insight by looking at the |
Beta Was this translation helpful? Give feedback.
In theory, when SSH debug is enabled, the hard timeout is set to 30min instead of the specified value, and that's the only difference for running the container. In practice, a few differences remain and come from the fact that the session is opened and the software is run through SSH.
The most common issue is that SSH tends to set a different shell environment to better fit your local settings. Therefore the set of environment variables may differ. Some graphical software that have CLI sometimes still look for the X display settings that may be sent through SSH, without using it.
There could also be subtleties if the software run has different behaviour in case no pseudo-TTY is attached o…