An Azure service that automates the access and use of data across clouds without writing code.
Hello Igbeka, Emeka,
Thank you for posting your question in the Microsoft Q&A forum.
A sudden failure of previously operational Logic App workflows, particularly within Inline Code operations, indicates a platform-level runtime disruption rather than a code defect. The issue almost certainly stems from Azure's deprecation of the underlying Node.js version that powered the Functions runtime. Your Logic App's configuration was likely dependent on a now-retired version, such as Node.js 14 or 16, causing the initialization process to hang indefinitely.
The solution requires explicitly overriding the default platform setting by defining a new application configuration, WEBSITE_NODE_DEFAULT_VERSION, with a value of ~18 to mandate the use of a current, supported Long-Term Support version. This forces the runtime onto a stable and compatible foundation, resolving the initialization failure. Consequently, the Inline Code action can then execute successfully, allowing your workflows to proceed to completion without further interruption.
Please, let me know the response helps answer your question? If the above answer helped, please do not forget to "Accept Answer" as this may help other community members to refer the info if facing a similar issue. 🙂