Open 11ohina017 opened 3 years ago
I set is SessionsEnabled = true, but the setting is not reflected in function.json generated after building with gradle azureFunctionsPackage.
SessionsEnabled = true
function.json
gradle azureFunctionsPackage
public class Function { @FunctionName("FunctionApp") public void run( @ServiceBusQueueTrigger( name = "TriggerName", queueName = "queueName", connection = "ConnectionString", isSessionsEnabled = true ) String message, ExecutionContext context ) { } }
{ "scriptFile" : "../func.jar", "entryPoint" : "test.Function.run", "bindings" : [ { "type" : "serviceBusTrigger", "direction" : "in", "name" : "TriggerName", "queueName" : "queueName", "connection" : "ConnectionString" } ] }
How to set isSessionsEnabled = true in function.json?
It seems that isSessionsEnabled is supported by mave plugin, but for some reason isSessionsEnabled is not generated in fucntion.json when implemented with gradle plugin.
isSessionsEnabled
https://github.com/microsoft/azure-maven-plugins/issues/822
When will this issue be completed?
I set is
SessionsEnabled = true
, but the setting is not reflected infunction.json
generated after building withgradle azureFunctionsPackage
.How to set isSessionsEnabled = true in function.json?