You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After I added copycopter_client to my rails application, I noticed an interesting side-effect.
The rails process doesn't start properly unless it's slowed down a bit after CopycopterClient.configure. Just adding sleep 2 after configuration allows rails to start normally.
The logs can easily be used to identify when the problem occurs. Without the sleep clause "Downloaded translations" message doesn't appear in the log and rails doesn't respond at all.
I currently don't have anything to go on to further debug this issue.
My copycopter initializer contains:
CopycopterClient.configure do |config|
config.api_key = 'mykey'
config.host = 'my-copycopter.herokuapp.com'
end
sleep 1
This issue is seen with rails 3.2.6 and ruby 1.9.3
The text was updated successfully, but these errors were encountered:
After I added copycopter_client to my rails application, I noticed an interesting side-effect.
The rails process doesn't start properly unless it's slowed down a bit after CopycopterClient.configure. Just adding sleep 2 after configuration allows rails to start normally.
The logs can easily be used to identify when the problem occurs. Without the sleep clause "Downloaded translations" message doesn't appear in the log and rails doesn't respond at all.
I currently don't have anything to go on to further debug this issue.
My copycopter initializer contains:
This issue is seen with rails 3.2.6 and ruby 1.9.3
The text was updated successfully, but these errors were encountered: