Scott Clasen

Results 19 issues of Scott Clasen

when we receive an error while attempting to heartbeat, we just continue here https://github.com/sclasen/swfsm/blob/master/activity/coordinated_worker.go#L63 In the case where RecordActivityTaskHeartbeat is being constantly throttled, the worker will never get a heartbeat...

right now `NewTestListener` wires up a bunch of stub related stuff which would be nice to be able to opt out of. Maybe 2 test config types `StubedTestConfig` and `IntegrationTestConfig`...

CoordinatedWorkers usually need to be stateful, so the handler code should create one per task, rather than just one. When a Coordinated worker starts up, there should be a callback...

Add optional FSMState.EntryDecisions MultiDecisionFunc func that fires anytime a state is being entered. this allows simplifying workflows where many states transition to a given state, and would have startActivity boilerplate....

provide a managed data structure accessible from the fsm context that allows you to defer handling a signal until you are in a latter state (or later portion of a...

would make using this on heroku easier, since they give you a redis url. so application conf could look like redis.url=${REDISTOGO_URL} and used like... val redisUrl = new URI(current.config.getString("redis.url").get) val...

Example: Get an App from api.heroku.com, response is. {"id":7741828,"name":"john-test-ent20","dynos":0,"workers":0,"repo_size":null,"slug_size":null,"stack":"cedar","requested_stack":null,"create_status":"complete","repo_migrate_status":"complete","owner_email":"[email protected]","owner_name":null,"domain_name":{"id":null,"app_id":7741828,"domain":"john-test-ent20.herokuapp.com","base_domain":"herokuapp.com","created_at":null,"default":true,"updated_at":null},"web_url":"http://john-test-ent20.herokuapp.com/","git_url":"[email protected]:john-test-ent20.git","buildpack_provided_description":null,"created_at":"2012/09/19 18:20:28 -0700","released_at":"2012/09/19 18:20:43 -0700"} parse to heroku.jar app and then render json... {"id":"7741828","name":"john-test-ent20","stack":"Cedar","dynos":0,"workers":0,"domain":{"domain":"john-test-ent20.herokuapp.com","id":null,"default":"true","createdAt":null,"updatedAt":null,"appId":"7741828","baseDomain":"herokuapp.com"},"createdAt":"2012/09/19 18:20:28 -0700","webUrl":"http://john-test-ent20.herokuapp.com/","gitUrl":"[email protected]:john-test-ent20.git","buildpackProvidedDescription":null,"createStatus":"complete","requestedStack":null,"repoMigrateStatus":"complete","slugSize":0,"repoSize":0,"ownerEmail":"[email protected]","releasedAt":"2012/09/19 18:20:43 -0700"}

For instance, supporting pgbackups, and maintennce on/off would be nice in the flow CI build/test CI heroku maintenence:on CI heroku _do a pgbackup_ CI push new code CI heroku manitenence:off

**Is your feature request related to a problem? Please describe.** Currently it appears that if you are using RBatch, it cant easily be used together with MapLoader / MapWriter, or...

feature