You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sc...@apache.org on 2016/01/13 17:31:22 UTC

airavata-php-gateway git commit: showing job submission response for failed jobs

Repository: airavata-php-gateway
Updated Branches:
  refs/heads/master 894346d5b -> d91248804


showing job submission response for failed jobs


Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/d9124880
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/d9124880
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/d9124880

Branch: refs/heads/master
Commit: d912488043a1f7b3c79c7428a196c19f2980b99d
Parents: 894346d
Author: scnakandala <su...@gmail.com>
Authored: Wed Jan 13 11:31:16 2016 -0500
Committer: scnakandala <su...@gmail.com>
Committed: Wed Jan 13 11:31:16 2016 -0500

----------------------------------------------------------------------
 app/views/partials/experiment-info.blade.php | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/d9124880/app/views/partials/experiment-info.blade.php
----------------------------------------------------------------------
diff --git a/app/views/partials/experiment-info.blade.php b/app/views/partials/experiment-info.blade.php
index bef7c83..f9917bf 100644
--- a/app/views/partials/experiment-info.blade.php
+++ b/app/views/partials/experiment-info.blade.php
@@ -140,7 +140,15 @@
             </td>
         </tr>
         {{--@endif--}}
-
+        @foreach( $expVal["jobDetails"] as $index => $jobDetail)
+            @if($experiment->experimentStatus->state == \Airavata\Model\Status\ExperimentState::FAILED
+                    || $jobDetail->jobStatus->jobStateName == "FAILED")
+            <tr>
+                <th>Job Submission Response</th>
+                <td>{{$jobDetail->stdOut}}</td>
+            </tr>
+            @endif
+        @endforeach
     </table>
 
     @if( !isset( $dashboard))