-
Notifications
You must be signed in to change notification settings - Fork 7
fix continue as new bug where we missed router on the multi-app change #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: Filinto Duran <[email protected]>
|
one thing is that this bug does not appear with durabletask-go, as it might not be aware of multi-app or don't care, so it would be better to change CI to run against real dapr setup |
|
@acroca this is important to have and then update 1.16 python to use it. we have this broken in 1.16 |
| result=shared.to_json(self._new_input) | ||
| if self._new_input is not None | ||
| else None, | ||
| result=shared.to_json(self._new_input) if self._new_input is not None else None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To simplify this, I think it'd be better to move this to a variable like you did in the client.py.
Also change the other places where there's an inline if in function arguments, there are a few in this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure on the benefit of creating a new variable that is only used once, ternary operations assignments are common in python and already used in this file prior to this PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, maybe it's just a personal taste. It's fine
Signed-off-by: Filinto Duran <[email protected]>
A slim version of #23 without linting, additions to tox, pyproject, removal of fluke8, etc