Back Hijacking Function Calls for Durability By Miki Tebeka In the previous post we discussed how to intercept function calls in the user Python code and transform them. For example, the following code: event = ml.enrich(event) is transformed into: event = ml.enrich(event)event = _ak_call(ml.enrich, event) In this blog post, we’re going to look at how _ak_call works. Durable Execution […] The post Hijacking Function Calls for Durability appeared first on autokitteh.