Skip to content

Commit b418c6f

Browse files
committed
Merge branch 'master' into tristan/log-agent
2 parents f1498f2 + ebbe85b commit b418c6f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.kitchen.docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ suites:
2020
- recipe[datadog::dd-agent]
2121
attributes:
2222
datadog:
23-
api_key: somethingnotnil
23+
api_key: somenonnullapikeythats32charlong
2424
application_key: alsonotnil

.kitchen.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ suites:
6262
- recipe[datadog::dd-agent]
6363
attributes:
6464
datadog: &DATADOG
65-
api_key: somethingnotnil
65+
api_key: somenonnullapikeythats32charlong
6666
application_key: alsonotnil
6767

6868
- name: dd-handler
6969
run_list:
7070
- recipe[datadog::dd-handler]
7171
attributes:
7272
datadog: &DATADOG
73-
api_key: somethingnotnil
73+
api_key: somenonnullapikeythats32charlong
7474
application_key: alsonotnil
7575

7676
- name: datadog_apache

test/integration/dd-agent/serverspec/dd-agent_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
it { should be_running }
99
end
1010

11-
describe command('/etc/init.d/datadog-agent info'), :if => os[:family] != 'windows' do
11+
describe command('/etc/init.d/datadog-agent info | grep -v "API Key is invalid"'), :if => os[:family] != 'windows' do
1212
its(:exit_status) { should eq 0 }
1313
its(:stdout) { should contain 'OK' }
1414
its(:stdout) { should_not contain 'ERROR' }

0 commit comments

Comments
 (0)