diff --git a/config/deploy.yml b/config/deploy.yml index f6c1077..74eea89 100644 --- a/config/deploy.yml +++ b/config/deploy.yml @@ -16,13 +16,6 @@ servers: options: network: "private" - job: - hosts: - - 174.138.51.62 - cmd: bundle exec sidekiq -e production -t 25 - options: - network: "private" - # Credentials for your image host. registry: server: ghcr.io diff --git a/config/initializers/redis.rb b/config/initializers/redis.rb index ba5dfab..340cd52 100644 --- a/config/initializers/redis.rb +++ b/config/initializers/redis.rb @@ -3,7 +3,7 @@ begin redis = Redis.new - pp redis.ping + puts "✅ REDIS" if redis.ping == 'PONG' rescue Exception => e pp "🚨🚨🚨 #{e.message}" end