Skip to content

Instantly share code, notes, and snippets.

@perryqh
Created December 2, 2016 20:12
Show Gist options
  • Save perryqh/775410c7fdb6fb00b869c006fba67051 to your computer and use it in GitHub Desktop.
Save perryqh/775410c7fdb6fb00b869c006fba67051 to your computer and use it in GitHub Desktop.
A hacked solution to get CIRCLE CI to succeed on an octopus app
if ENV.fetch('OCTOPUS_ENABLED', true)
require 'octopus'
module Octopus
def self.shards_in(group=nil)
config[Rails.env].try(:[], group.to_s).try(:keys)
end
def self.followers
shards_in(:followers)
end
class << self
alias_method :followers_in, :shards_in
alias_method :slaves_in, :shards_in
end
end
if Octopus.enabled?
count = case (Octopus.config[Rails.env].values[0].values[0] rescue nil)
when Hash
Octopus.config[Rails.env].map { |_group, configs| configs.count }.sum rescue 0
else
Octopus.config[Rails.env].keys.count rescue 0
end
puts "=> #{count} #{'database'.pluralize(count)} enabled as read-only #{'slave'.pluralize(count)}"
if Octopus.followers.count == count
Octopus.followers.each { |f| puts " * #{f.split('_')[0].upcase} #{f.split('_')[1]}" }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment