How do I prevent CopyCopter(client & server on Heroku) text from reverting to Default values?

185 Views Asked by At

Occasionally text reverts to default values. Particular in the mornings.

My guess, since both are running on Heroku, is that one or both apps are put to sleep on low volume days.

If I am guessing correctly, it seems likely, there is a best practices (and free) way to prevent the apps from going to sleep on Heroku? Perhaps frequent pinging (what do you use?), set some variable or a way to tell the apps to wake up an be available at some early time in the morning?

2

There are 2 best solutions below

0
On

You could try using a serivce like http://www.pingdom.com/ to ping your app every so often and keep the dyno from going to sleep (I think up to once a minute for one app is free).

A second option is to set the timeout to a higher value.

#config/initializers/copycopter.rb

CopycopterClient.configure do |config|
  config.api_key = key_xxx
  config.host = site_xxx
  config.http_read_timeout = 120
  config.http_open_timeout = 120
end
0
On

If you're trying to keep a Heroku app from going to sleep, the simplest thing is to add a second dyno.