Skip to content

Commit

Permalink
Merge pull request yatish27#12 from matthew342/master
Browse files Browse the repository at this point in the history
quiet noisy output
  • Loading branch information
yatish27 committed Aug 14, 2013
2 parents 337c693 + b2ece76 commit 4911a7c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions lib/salesforce_bulk_api/job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ def create_job()

response = @@connection.post_xml(nil, path, xml, headers)
response_parsed = XmlSimple.xml_in(response)
puts response
@@job_id = response_parsed['id'][0]
end

Expand Down Expand Up @@ -84,7 +83,6 @@ def add_batch()
response_parsed = XmlSimple.xml_in(response)

@@batch_id = response_parsed['id'][0]
puts @@batch_id
end
end

Expand All @@ -95,12 +93,9 @@ def check_batch_status()
response = @@connection.get_request(nil, path, headers)
response_parsed = XmlSimple.xml_in(response)

# puts response_parsed
begin
#puts "check: #{response_parsed.inspect}\n"
response_parsed
rescue Exception => e
#puts "check: #{response_parsed.inspect}\n"
nil
end
end
Expand Down

0 comments on commit 4911a7c

Please sign in to comment.