module Gitlab::Client::Jobs

def job_trace(project_id, job_id)

Returns:
  • (Array) -

Parameters:
  • the (Integer) -- id of the job
  • The (Integer, String) -- ID or name of a project.
def job_trace(project_id, job_id)
  get("/projects/#{url_encode project_id}/jobs/#{job_id}/trace",
      format: nil,
      headers: { Accept: 'text/plain' },
      parser: ::Gitlab::Request::Parser)
end