Mohammed Firdaus

Results 16 comments of Mohammed Firdaus

Okay I see the issue, it's quite an embarrassing omission on my part. I'm yet to process exceptions that occur in the workflow method with FailWorkflowExecutionDecisionAttributes. This will also require...

Maxim and I are discussing this in the Slack channel, basically the caller will be getting a WorkflowFailureException that will wrap the exception that occurred in the Workflow function.

This should be resolved - https://github.com/firdaus/cadence-python/blob/fd80de55ba035ea86434df78f499dc791b4cbadc/cadence/tests/test_workflow_workflow_exception.py - let me know if you're still having problems

Yeah I think that's doable, I can place a log message with the workflow id when the workflow method returns.

I missed this requirement. Thanks for bringing this to my attention. At the moment everything becomes a Python primitive, list or dictionary. I'll add this to 1.1 release. It should...

DecisionTaskFailed isn't handled yet in the event_handlers dictionary - https://github.com/firdaus/cadence-python/blob/79367b74c1efff34a58c406c56f84883bf1e71ad/cadence/decision_loop.py I'm actually not aware of what this workflow reset feature does behind the scenes, I'll need to study it first.

Hi there, it's not yet ready for that use case yet. I need to implement: WorkflowClient.newWorkflowStub(Class workflowInterface, String workflowId); So that you can look up the active workflow when that...

Let me review it a second time and I'll merge it

Hi @CGreenburg, I'm not able to reproduce this with the code below. Could you share some sample code that produces that error on your side. ```python import asyncio import logging...