lib/release_tools/pipeline_tracer/job.rb [74:87]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        {
          job_name: job.name,
          id: job.id,
          web_url: job.web_url,
          allow_failure: job.allow_failure,
          user: job.user.username,
          stage: job.stage,
          started_at: job.started_at,
          finished_at: job.finished_at,
          status: job.status,
          duration: job.duration,
          queued_duration: job.queued_duration
        }.stringify_keys
      end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/release_tools/pipeline_tracer/job_spec.rb [45:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      {
        job_name: job.name,
        id: job.id,
        web_url: job.web_url,
        allow_failure: job.allow_failure,
        user: job.user.username,
        stage: job.stage,
        started_at: job.started_at,
        finished_at: job.finished_at,
        status: job.status,
        duration: job.duration,
        queued_duration: job.queued_duration
      }.stringify_keys
    end
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



