search for: server_worker

Displaying 2 results from an estimated 2 matches for "server_worker".

2008 Apr 02
2
scheduling worker methods in rails
...sh: SHA1 Hi, i''m trying desperately to schedule some worker methods within rails 2.0.2. The problem is, both methods don''t even get called by BackgrounDRb. my background.yml: > --- > :backgroundrb: > :port: 11006 > :ip: 0.0.0.0 > --- > :schedules: > :server_worker: > :update: > :trigger_args: 1 * * * * * * > :monitoring_worker: > :check_services: > :trigger_args: */10 * * * * * * Both Worker gets automatically started if BackgroundRb starts. I want the server_worker to start an update-method every minute, the monitoring_...
2008 Jan 22
11
Unable to load Models which reference plugins?
I''m using a plugin which adds a method to ActiveRecord::Base http://similetimelinerailshelper.googlecode.com/svn/trunk/simile_timeline/ This adds an "acts_as" type declaration to the Models, via the file in vendor/plugins/simile_timeline/lib/simile_timeline.rb Rails is working with these declarations, and they are being used successfully in ''regular