Skip to content

Commit f738e6f

Browse files
(maint) disable dropsonde during acceptance tests
It was discovered that the dropsonde service was running during acceptance tests, and due to the nature of the tests (many reloads in rapid succession, and lack of outward connectivity), the ruby processes could cause excessive memory use. This disables the service during acceptance tests, as we don't need to test it specifically there.
1 parent c9165a1 commit f738e6f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

acceptance/suites/pre_suite/foss/80_configure_puppet.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
end
1616
end
1717

18-
config = { 'certificate-authority' => { 'allow-subject-alt-names' => true }}
18+
config = { 'certificate-authority' => { 'allow-subject-alt-names' => true },
19+
'dropsonde' => { 'enabled' => false }}
1920
path = '/etc/puppetlabs/puppetserver/conf.d/puppetserver.conf'
2021
modify_tk_config(master, path, config)
2122
end

0 commit comments

Comments
 (0)