Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect functions.json #11

Open
lonpalmer opened this issue Sep 28, 2018 · 1 comment
Open

Incorrect functions.json #11

lonpalmer opened this issue Sep 28, 2018 · 1 comment

Comments

@lonpalmer
Copy link

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",
}

@lonpalmer
Copy link
Author

More news, seems to only apply to http trigger.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant