Stéphane Meny
3 years ago
committed by
GitHub
2 changed files with 10 additions and 2 deletions
@ -0,0 +1,8 @@
|
||||
namespace :cf do |
||||
desc "Only run on the first application instance" |
||||
task on_first_instance: :environment do |
||||
# We expect this information to be always available or break otherwise |
||||
instance_index = JSON.parse(ENV["VCAP_APPLICATION"])["instance_index"] |
||||
exit(0) unless instance_index.zero? |
||||
end |
||||
end |
Loading…
Reference in new issue