locating function.json file Azure function
Mohamed Hussein
610
Reputation points
Good Day,
I've HTTP trigger based Python Azure function, i wanted to use durable function
As i far got i should use (starter) at the declaration of the function
async def HusAzFuncBulkUploadMSISDN(req: func.HttpRequest, starter: str) -> func.HttpResponse:
However, when i manually added starter: str, i got error
cannot load the HusAzFuncBulkUploadMSISDN function: the following parameters are declared in Python but not in function.json: {'starter'}
I can locate the hosted HusAzFuncBulkUploadMSISDN.json
but could not locate HusAzFuncBulkUploadMSISDN.json at the source code, to amend the binding
Sign in to answer