Skip to content

Commit 568f511

Browse files
committed
fix: send verification publishing message to stderr when json output
Closes: pact-foundation/pact-ruby-standalone#9
1 parent f2cffe2 commit 568f511

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/pact/provider/verification_results/publish.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def publish_verification_results
107107

108108
if response.code.start_with?("2")
109109
new_resource_url = JSON.parse(response.body)['_links']['self']['href']
110-
$stdout.puts "INFO: Verification results published to #{new_resource_url}"
110+
Pact.configuration.output_stream.puts "INFO: Verification results published to #{new_resource_url}"
111111
else
112112
raise PublicationError.new("Error returned from verification results publication #{response.code} #{response.body}")
113113
end

lib/pact/tasks/task_helper.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
require 'pact/configuration'
12
require 'pact/provider/pact_helper_locator'
23
require 'rake/file_utils'
34
require 'shellwords'
@@ -36,7 +37,7 @@ def verify_command pact_helper, pact_uri, rspec_opts
3637
end
3738

3839
def execute_cmd command
39-
$stdout.puts command
40+
Pact.configuration.output_stream.puts command
4041
temporarily_set_env_var 'PACT_EXECUTING_LANGUAGE', 'ruby' do
4142
temporarily_set_env_var 'PACT_INTERACTION_RERUN_COMMAND', PACT_INTERACTION_RERUN_COMMAND do
4243
exit_status = system(command) ? 0 : 1

0 commit comments

Comments
 (0)