This is an automated email from the ASF dual-hosted git repository.

josephwu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 0aeb947217325f93905e87b6e7728fff9113a691
Author: Hans Beck <[email protected]>
AuthorDate: Mon Jun 24 12:23:19 2019 +0200

    Fixed JSON of container image GC example.
    
    The documentation used an incorrect field name
    ('nano_seconds' instead of 'nanoseconds'), and an incorrect value
    ('3600' instead of '3600*10**9').
    
    This closes #338.
---
 docs/container-image.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/container-image.md b/docs/container-image.md
index 463fb21..fb389e7 100644
--- a/docs/container-image.md
+++ b/docs/container-image.md
@@ -430,7 +430,7 @@ or as a JSON object,
     --image_gc_config="{ \
       \"image_disk_headroom\": 0.1, \
       \"image_disk_watch_interval\": { \
-        \"nano_seconds\": 3600 \
+        \"nanoseconds\": 3600000000000 \
         }, \
       \"excluded_images\": \[ \] \
     }"

Reply via email to