Sha256: cd4ebd5c1cd3b88bbf9aff880bb61af8455d9a289a5e4fa6b1ed893bec185dab

Contents?: true

Size: 480 Bytes

Versions: 2

Compression:

Stored size: 480 Bytes

Contents

<% if job.failed? %>
  <a id="error"></a>
  <h2 class="subtitle">Error information</h2>

  <table class="table">
    <tbody>
    <tr>
      <th>Type</th>
      <td> <%= job.last_execution_error.error_class %> </td>
    </tr>
    <tr>
      <th>Message</th>
      <td> <%= job.last_execution_error.try(:message) || job.last_execution_error.inspect %> </td>
    </tr>
    </tbody>
  </table>

  <pre class="is-family-monospace mb-4"><%= failed_job_backtrace(job) %></pre>
<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mission_control-jobs-0.1.1 app/views/mission_control/jobs/jobs/_error_information.html.erb
mission_control-jobs-0.1.0 app/views/mission_control/jobs/jobs/_error_information.html.erb