[ARVADOS] updated: 1.1.4-179-gd259f37

Git user git at public.curoverse.com
Thu May 3 11:14:05 EDT 2018


Summary of changes:
 doc/_config.yml                         |  2 +-
 doc/admin/upgrading.html.textile.liquid | 45 +++++++++++++++++++++++++--------
 2 files changed, 35 insertions(+), 12 deletions(-)

       via  d259f372bcb682ed4b63edf9694c4e1581c60365 (commit)
      from  dc8ace3a2a74cbb2b5d68bc6d9086e4b1b5faf1e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit d259f372bcb682ed4b63edf9694c4e1581c60365
Author: Peter Amstutz <pamstutz at veritasgenetics.com>
Date:   Thu May 3 11:13:38 2018 -0400

    13365: Add example error messages and highlight the changes.
    
    Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <pamstutz at veritasgenetics.com>

diff --git a/doc/_config.yml b/doc/_config.yml
index 4766e3f..78b11b7 100644
--- a/doc/_config.yml
+++ b/doc/_config.yml
@@ -145,10 +145,10 @@ navbar:
   admin:
     - Topics:
       - admin/index.html.textile.liquid
+      - admin/upgrading.html.textile.liquid
       - install/cheat_sheet.html.textile.liquid
       - user/topics/arvados-sync-groups.html.textile.liquid
       - admin/merge-remote-account.html.textile.liquid
-      - admin/upgrading.html.textile.liquid
       - install/migrate-docker19.html.textile.liquid
   installguide:
     - Overview:
diff --git a/doc/admin/upgrading.html.textile.liquid b/doc/admin/upgrading.html.textile.liquid
index b3bf66d..7a330a9 100644
--- a/doc/admin/upgrading.html.textile.liquid
+++ b/doc/admin/upgrading.html.textile.liquid
@@ -1,7 +1,7 @@
 ---
 layout: default
 navsection: admin
-title: "Upgrading Arvados"
+title: "Upgrading Arvados and Release notes"
 ...
 
 {% comment %}
@@ -61,16 +61,30 @@ steps:
       baseCommand: echo
 </pre>
 
-To fix this, add the appropriate @secondaryFiles@ section to @toplevel_input@
+When run, this produces an error like this:
 
 <pre>
-class: Workflow
+cwltool ERROR: [step step1] Cannot make job: Missing required secondary file 'hello.txt.idx' from file object: {
+    "basename": "hello.txt",
+    "class": "File",
+    "location": "keep:ade9d0e032044bd7f58daaecc0d06bc6+51/hello.txt",
+    "size": 0,
+    "nameroot": "hello",
+    "nameext": ".txt",
+    "secondaryFiles": []
+}
+</pre>
+
+To fix this error, add the appropriate @secondaryFiles@ section to @toplevel_input@
+
+<notextile>
+<pre><code>class: Workflow
 cwlVersion: v1.0
 inputs:
-  toplevel_input:
+  <span class="userinput">toplevel_input:
     type: File
     secondaryFiles:
-      - .idx
+      - .idx</span>
 outputs: []
 steps:
   step1:
@@ -87,7 +101,8 @@ steps:
             - .idx
       outputs: []
       baseCommand: echo
-</pre>
+</code></pre>
+</notextile>
 
 h4. Secondary files on default file inputs
 
@@ -107,24 +122,32 @@ outputs: []
 baseCommand: echo
 </pre>
 
-To fix this, manually upload the primary and secondary files to keep and explicitly declare @secondaryFiles@ on the default primary file:
+When run, this produces an error like this:
 
 <pre>
-class: CommandLineTool
+2018-05-03 10:58:47 cwltool ERROR: Unhandled error, try again with --debug for more information:
+  [Errno 2] File not found: u'hello.txt.idx'
+</pre>
+
+To fix this, manually upload the primary and secondary files to keep and explicitly declare @secondaryFiles@ on the default primary file:
+
+<notextile>
+<pre><code>class: CommandLineTool
 inputs:
   step_input:
     type: File
     secondaryFiles:
       - .idx
-    default:
+    <span class="userinput">default:
       class: File
       location: keep:4d8a70b1e63b2aad6984e40e338e2373+69/hello.txt
       secondaryFiles:
        - class: File
-         location: keep:4d8a70b1e63b2aad6984e40e338e2373+69/hello.txt.idx
+         location: keep:4d8a70b1e63b2aad6984e40e338e2373+69/hello.txt.idx</span>
 outputs: []
 baseCommand: echo
-</pre>
+</code></pre>
+</notextile>
 
 This bug will be fixed in an upcoming release of Arvados.
 

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list