Sha256: b0f5f089fc605288fe78d358d33048c422eac2a83cea9c4949cd61d8ec8f1636

Contents?: true

Size: 696 Bytes

Versions: 8

Compression:

Stored size: 696 Bytes

Contents

require 'yaml'
require 'concur'
begin
  require File.join(File.dirname(__FILE__), '..', 'lib', 'iron_mq')
rescue Exception => ex
  puts "Could NOT load current iron_mq: " + ex.message
  raise ex
end

require_relative 'long_run_worker'

@config = YAML::load_file(File.expand_path(File.join("~", "Dropbox", "configs", "iron_mq_ruby", "test", "config.yml")))
@num_to_add = @config['count']

IronWorker.configure do |c|
  c.token = @config['iron_mq']['token']
  c.project_id = @config['iron_mq']['project_id']
end

worker = LongRunWorker.new
worker.config = @config
worker.num_to_add = @num_to_add
worker.run_local
#worker.queue
#status = worker.wait_until_complete
#p status
#puts worker.get_log



Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
iron_mq-1.9.1 test/long_run.rb
iron_mq-1.9.0 test/long_run.rb
iron_mq-1.8.0 test/long_run.rb
iron_mq-1.7.3 test/long_run.rb
iron_mq-1.7.2 test/long_run.rb
iron_mq-1.7.1 test/long_run.rb
iron_mq-1.7.0 test/long_run.rb
iron_mq-1.5.0 test/long_run.rb