Tolga Ceylan
Tolga Ceylan
Subsystem requests are aliases that are similar to exec or shell requests. The server can respond to subsystem requests with exit status or exit signal. This means in session handling...
Docker uses: http://tldp.org/LDP/abs/html/exitcodes.html Make sure FDK does not allow functions to exit with these codes. For example, 137 exit code is currently flagged as OOM in fn-agent, therefore functions should...
Currently, fn dind likely grabs the same disk/location for its /var/lib/docker as the parent docker, where both dockers end up using the same disk space. To track this, some notes...
Docker uses: http://tldp.org/LDP/abs/html/exitcodes.html Make sure FDK does not allow functions to exit with these codes. For example, 137 exit code is currently flagged as OOM in fn-agent, therefore functions should...
Likely a bug, cmd.Wait() should not be called before all I/O is completed on stderr: https://github.com/fnproject/hotwrap/blob/master/hotwrap.go#L78 (See: https://golang.org/pkg/os/exec/#Cmd.StderrPipe)