Thanks for posting your question in the Microsoft Q&A forum.
Make sure your HttpStart
function looks something like this:
const df = require('durable-functions');
module.exports = async function (context, req) {
const client = df.getClient(context);
// Rest of your function code
};
Ensure your package.json
includes the latest version of durable-functions
, and if possible, try setting up a local development environment for Azure Functions to test your code outside the sandbox.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful