Displaying 5 results from an estimated 5 matches for "tyra".
Did you mean:
tara
2007 Dec 08
3
Multiple Worker Methods on Different Schedules
Quick question: If I want to schedule different worker methods defined in
the same worker to trigger at different times, is this possible? Would the
following scheduler yaml work?
:schedules:
:foo_worker:
:worker_method: method1
:trigger_args: 0 */10 * * * * *
:job_key: some_key_1
:foo_worker:
:worker_method: method2
:trigger_args: 0 */15 * * * * *
:job_key:
2007 Dec 06
10
Feedback on RC2
I tried to upgrade my existing application to RC2 last night. Like many, I
use this mostly for running scheduled tasks. For the moment, I''ve abandoned
the effort, but am looking forward to being able to use this. Feedback
below:
First, the reason I was looking forward to this upgrade was to use the
threaded scheduler. I have an application with long-running tasks. I found
that
2006 Mar 02
1
web serveces problem
...tring]
end
2. app/models/kate_api_service.rb : (tried to put it also in apis
directory - where should it be??)
class KateAPIService < ActionWebService::Base
web_service_api KateAPI
def check_version (version)
if version != ''0.25''
''you are trying to talk with Tyra version 0.25 with a different
version !''
else
''server and client versions match - 0.25''
end
end
end
3. app/controller/kate_controller.rb:
class KateController < ApplicationController
web_service_scaffold :invoke
web_service_dispatching_mode :layered
web_s...
2009 Aug 05
4
[Bug 1627] New: SMF issues on sparse-root zones
...Component: Build system
AssignedTo: unassigned-bugs at mindrot.org
ReportedBy: mike.ellis at fmr.com
I was REALLY impressed by your make-system, where "make package"
produces a Solaris package. very very slick. SMF integration ontop of
that.. GET OUT!!! (Redonkulous as Tyra would say)
But alas I found a bug I'd like to report.
--
Basically if you install the package directly into a sparse-zone, SMF
can't go putting things in /lib///// as that is a read-only
directory/fs that it can't write into. If we're in a sparse-root local
zone (and that could b...
2006 Mar 30
2
Functional test confusion
I have been reading about testing in RoR for what seems like hours now
in search of the answer to what is probably a simple problem. Where is
the best place to test the second action explained below?
I have a controller (NetworkingController) with a method
(create_network_segment) that makes use of two models (NetworkSegment
and NetworkIpaddress). This particular method does two actions:
1.