From 5ce7ed7dad02b001e2bc864c31b8ca8f9f5fb238 Mon Sep 17 00:00:00 2001 From: Si-Yuan Date: Fri, 2 Nov 2018 16:50:55 -0700 Subject: [PATCH] Fix 'tempfile' docs (#3180) * Fix docs. * Update doc/source/tempfile.rst Co-Authored-By: suquark * Remove doc for raylet socket. --- doc/source/tempfile.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/source/tempfile.rst b/doc/source/tempfile.rst index 99daf2833..d68e835e0 100644 --- a/doc/source/tempfile.rst +++ b/doc/source/tempfile.rst @@ -40,7 +40,7 @@ A typical layout of temporary files could look like this: /tmp └── ray └── session_{datetime}_{pid} - ├── logs + ├── logs # for logging │   ├── log_monitor.err │   ├── log_monitor.out │   ├── monitor.err @@ -59,7 +59,7 @@ A typical layout of temporary files could look like this: │   ├── worker-{worker_id}.out │   └── {other workers} ├── ray_ui.ipynb # ipython notebook file - └── sockets # for logging + └── sockets # for sockets ├── plasma_store └── raylet # this could be deleted by Ray's shutdown cleanup. @@ -76,6 +76,7 @@ You are allowed to specify the plasma object store socket in one of these ways: The path you specified will be given as it is without being affected any other paths. + Notes -----