This repository was archived by the owner on Jan 10, 2019. It is now read-only.

Description
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 error undefined method `activity_type' for nil:NilClass"
Possibly something to do with the forking?
My workers look like:
AWS.config(access_key_id: AWS_SWF_ACTIVITY_KEY, secret_access_key: AWS_SWF_ACTIVITY_SECRET)
swf = AWS::SimpleWorkflow.new
domain = swf.domains[SWF_DOMAIN]
worker = AWS::Flow::ActivityWorker.new(swf.client, domain, task_list, ActivitiesClass)
worker.start if __FILE__ == $0
I'm running this worker on ubuntu/EC2.
@mjsteger