xref: /unit/test/ruby/hooks/on_worker_boot.rb (revision 1912:942e252e3f4c)
1require 'securerandom'
2
3on_worker_boot do
4    File.write("./cookie_worker_boot.#{SecureRandom.hex}", "booted")
5end
6