From 7c94c9d77c6287d296f4ffed925ef5efa3a173f1 Mon Sep 17 00:00:00 2001 From: Dmitrii Ustiugov Date: Tue, 28 May 2019 11:53:18 +0100 Subject: Changed sleep time in examples from 0.1 sec to 1 sec (in two places), according to the feedback --- content/docs/user_guide/debugging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'content') 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 -- cgit v1.2.3