Frank Martinez
Frank Martinez
Fixed in pull request #262
Hi @vpawar-ai, just to clarify, does "condition" is true just filter the specified value. When I think "condition" I think of an expression instead of a boolean. Should we let...
Oh, I see the condition expression is actually external to the activity. You are using the result of a mapping expression and assigning that to the "condition". It if this...
I worry about flows that have more than a million activity instances. But the main reason to have the limit is to reduce the impact of possible infinite loops.
What exactly fails? does it not create the zip, or is the zip structure incorrect?
Sorry about that. We will work on a page to describe/document the flow.json structure and concepts.
I think the problem is that we have "application" level debug logging and then developer elvel "debug" logging. Should we distinguish those.. or have a best practices.. maybe add a...
I think having DEBUG & TRACE and a best practices on when to use which would probably alleviate this issue a bit. I know that the log currently gets overwhelmed...
Currently there can be multiple instances of a trigger so we chose a factory pattern. There is only one instance of an activity and at the moment we do not...
An activity object is only instantiated once in the engine, it is basically a singleton. All of the necessary data to execute it (which is described in the metadata) is...