Closed Patataman closed 6 years ago
It's not Kafka, but the parent lookup algorithm. I've updated it so that parents always point to the parent intent, not to the parent object. Good catch.
https://github.com/guluc3m/zoe-lib-python/blob/master/zoe/tests/intents.py#L123
Please let me know if this solves your issues.
Kafka doesn't like lists inside the intents. Example (show method from the shell):
Writing in the shell
show("pepe")
returns the following error (using my zoe-lib):Here we can see that there's an error in line
dispatch
(line 162), also in this method, the variablesintent
,parent
andmethod
had this values:This seems totally ok, but the problem comes when the inner intent is solved:
Selector seems Ok, Intent too, but the Parent should be the before Intent, right? Not a list with the Intent being solve right now!