You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Latest version does not correctly create the bindings in the funciton.json file for each function. Previous version built from sources did create the function bindings correctly.
Latest version does not correctly create the bindings in the funciton.json file for each function. Previous version built from sources did create the function bindings correctly.
Correct function.json for my application:
{
"scriptFile" : "..\blah-1.0-SNAPSHOT.jar",
"entryPoint" : "someurl",
"bindings" : [ {
"type" : "httpTrigger",
"name" : "req",
"direction" : "in",
"route" : "network/{network-id}",
"webHookType" : "NONE",
"authLevel" : "anonymous",
"methods" : [ "GET" ]
}, {
"type" : "http",
"name" : "$return",
"direction" : "out",
"webHookType" : "NONE"
} ],
"disabled" : false
}
New code produces:
{
"scriptFile" : "..\blah-1.0-SNAPSHOT.jar",
"entryPoint" : "someurl",
}
The text was updated successfully, but these errors were encountered: