summaryrefslogtreecommitdiff
path: root/spec/support/shared/context/client.rb
diff options
context:
space:
mode:
authorTom Duffield <tom@chef.io>2017-02-09 13:57:35 -0600
committerGitHub <noreply@github.com>2017-02-09 13:57:35 -0600
commit48671f8bb74d3679a42f2cac089aee814943a755 (patch)
tree6ef662035a4abde3235b861c5d2bb06bdc7f3496 /spec/support/shared/context/client.rb
parentf3141911a95f6c1475fe833884a772fc4b8eb3f9 (diff)
parent8278a357e3aeaf4b58bc88fcfbdd48e27c0ff944 (diff)
downloadchef-masster.tar.gz
Merge pull request #5793 from chef/lcg/data-collector-utf8masster
Sanitize UTF-8 data sent to Data Collector
Diffstat (limited to 'spec/support/shared/context/client.rb')
-rw-r--r--spec/support/shared/context/client.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/shared/context/client.rb b/spec/support/shared/context/client.rb
index 295bd6ce5f..c65650e6b1 100644
--- a/spec/support/shared/context/client.rb
+++ b/spec/support/shared/context/client.rb
@@ -95,7 +95,7 @@ shared_context "a client run" do
def stub_for_data_collector_init
expect(Chef::ServerAPI).to receive(:new).
- with(Chef::Config[:data_collector][:server_url]).
+ with(Chef::Config[:data_collector][:server_url], validate_utf8: false).
exactly(:once).
and_return(http_data_collector)
end