diff options
author | Dmitrii Ustiugov <dmitrii.ustiugov@epfl.ch> | 2019-05-28 11:53:18 +0100 |
---|---|---|
committer | Ian Lewis <ianlewis@google.com> | 2019-05-29 16:58:09 +0900 |
commit | 7c94c9d77c6287d296f4ffed925ef5efa3a173f1 (patch) | |
tree | 6224edf75cd13182e93d58b1a66da34f1aad620e /content | |
parent | b57660dffbc5a49882d9ba8e5136158e640b3885 (diff) |
Changed sleep time in examples
from 0.1 sec to 1 sec (in two places), according to the feedback
Diffstat (limited to 'content')
-rw-r--r-- | content/docs/user_guide/debugging.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/docs/user_guide/debugging.md b/content/docs/user_guide/debugging.md index f7965d23b..761721bd3 100644 --- a/content/docs/user_guide/debugging.md +++ b/content/docs/user_guide/debugging.md @@ -46,7 +46,7 @@ gVisor. It connects to the sandbox process, collects a stack dump, and writes it to the console. For example: ```bash -docker run --runtime=runsc --rm -d alpine sh -c "while true; do echo running; sleep .1; done" +docker run --runtime=runsc --rm -d alpine sh -c "while true; do echo running; sleep 1; done" 63254c6ab3a6989623fa1fb53616951eed31ac605a2637bb9ddba5d8d404b35b sudo runsc --root /var/run/docker/runtime-runsc/moby debug --stacks 63254c6ab3a6989623fa1fb53616951eed31ac605a2637bb9ddba5d8d404b35b @@ -89,7 +89,7 @@ the options available: For example: ```bash -docker run --runtime=runsc-prof --rm -d alpine sh -c "while true; do echo running; sleep .1; done" +docker run --runtime=runsc-prof --rm -d alpine sh -c "while true; do echo running; sleep 1; done" 63254c6ab3a6989623fa1fb53616951eed31ac605a2637bb9ddba5d8d404b35b sudo runsc --root /var/run/docker/runtime-runsc-prof/moby debug --profile-heap=/tmp/heap.prof 63254c6ab3a6989623fa1fb53616951eed31ac605a2637bb9ddba5d8d404b35b |