Displaying 1 result from an estimated 1 matches for "fullscript".
Did you mean:
callscript
2010 Jun 30
0
drb problem? ringy-dingy won't answer...
...ns right up to the call to
the server and right past it without getting to the server or raising
any errors.
Am using Ruby 1.8.6.26 , Ringy-Dingy 1.2.1, dj 1.8.4.
*********The server:
require ''rinda/ring''
class ScriptServer
include DRbUndumped
attr_accessor :result
def run(fullScript)
myTS = Time.now.strftime("%Y%m%d%H%M%S")
msg = "===> Starting #{scriptname} in run #{scriptrun} on
#{scriptenv} at #{myTS}"
puts msg
@result = "***#{scriptname} Launched [#{scriptlaunch}]"
rslt = fullScript.run
@result << rslt
msg...