aws-flow-ruby icon indicating copy to clipboard operation
aws-flow-ruby copied to clipboard

ARCHIVED

Results 35 aws-flow-ruby issues
Sort by recently updated
recently updated
newest added

There are obviously many pieces of this library that don't play well with JRuby (forking in particular), but most of the lower level pieces do work well. However, there's a...

Hi, I'm interested in using `aws-flow-ruby` for a fairly major project that will be around for a long time. I'm fascinated by the Amazon SWF service. I'm concerned however that...

My activity workers correctly process tasks 60% of the time, then they start throwing this error. "I have not been able to poll successfully, and am now bailing out, with...

If the SIGINT trap [here](https://github.com/aws/aws-flow-ruby/blob/master/aws-flow/lib/aws/runner.rb#L341) happens to start between [these two lines](https://github.com/aws/aws-flow-ruby/blob/master/aws-flow/lib/aws/runner.rb#L351-L352), the `workers` array possibly contains process IDs belonging to already stopped processes. This results in an `Errno::ESRCH` exception....

module Test class TestActivities extend AWS::Flow::Activities ..... end end AWS::Flow::ActivityWorker.new(domain.client, domain, task_list, nf).start error:Invalid name: Test::TestActivities.run (AWS::SimpleWorkflow::Errors::ValidationException) Reason: https://github.com/aws/aws-flow-ruby/blob/master/aws-flow/lib/aws/decider/activity.rb 449: prefix_name = options.prefix_name || self.to_s resolve: prefix_name = options.prefix_name ||...

I just started working on the flow framework and i needed to use other AWS libraries inside my activities, but there is no longer documentation for V1 of AWS SDK,...

Is there a way to interface with Rails Active Job?

I just started reading about SWF and am not very familiar with it, can an activity access a database through ActiveRecord or maybe the question is should it access the...

made an example repo: https://github.com/mustafashabib/aws-flow-timer-tests # Playing around with Timers Seeing weird behavior when you set a timer, it fires, and you have additional code to run (especially calling an...