An Azure service that automates the access and use of data across clouds without writing code.
Hello John Dziurlaj,
This usually indicates a runtime/host issue inside the Logic App container, not necessarily a problem with your workflows themselves.
Please try below Options to resolve your issue.
Option 1:
- Restart the Logic App (Most common fix)
Sometimes the Logic Apps runtime gets stuck.
Steps
Open your Logic App (Standard) resource.
Go to Overview.
Click Restart.
This restarts the underlying App Service host, which often resolves the workflow loading issue.
Option 2:
Verify WEBSITE_NODE_DEFAULT_VERSION
You mentioned upgrading:
WEBSITE_NODE_DEFAULT_VERSION = ~22
This may actually cause the problem.
Currently Logic Apps Standard runtime is tested mostly with Node 18 or 20.
Try changing to:
~18
or
~20
Steps:
Logic App → Configuration
Application settings
Update
WEBSITE_NODE_DEFAULT_VERSION = ~18
Restart the Logic App
Option 3:
Check the storage account
Logic Apps Standard requires a healthy storage account.
Go to:
Logic App → Configuration → Application Settings
Verify:
AzureWebJobsStorage
WEBSITE_CONTENTAZUREFILECONNECTIONSTRING
WEBSITE_CONTENTSHARE
If the storage account key changed or expired, workflows cannot load.
Option 4:
Clear portal cache (rare but possible)
Sometimes this is only a portal UI issue.
Try:
Hard refresh (Ctrl + F5)
Open in Incognito
Try another browser
Since you mentioned:
You upgraded Node version to ~22
The most probable issue is runtime incompatibility with Logic Apps Standard.
Recommended fix:
WEBSITE_NODE_DEFAULT_VERSION = ~18
Then restart the Logic App.
Please accept as answer and do a Thumbs-up to upvote this response if you are satisfied with the community help. Your upvote will be beneficial for the community users facing similar issues.