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
I'm in the process of adding debugging capabilities for Ballerina Azure functions ;). Ballerina is implemented using Custom handlers. I need to pass debug args to start the ballerina debug server upon func start. I noticed, in other languages such as java you can use the field "languageWorkers__java__arguments" in application settings to do this. What is the equivalent of that for custom handlers?
Please note I want to do this using application settings. not host.json as we need vscode impl, we need to programmatically set these.
What language does your question apply to? (e.g. C#, JavaScript, Java, All)
Ballerina(Custom Handlers)
The text was updated successfully, but these errors were encountered:
Mainly you need to use the app setting in the following format. AzureFunctionsJobHost__path__to__setting in your case it should translate to AzureFunctionsJobHost__customHandler__arguments
Question
I'm in the process of adding debugging capabilities for Ballerina Azure functions ;). Ballerina is implemented using Custom handlers. I need to pass debug args to start the ballerina debug server upon
func start
. I noticed, in other languages such as java you can use the field "languageWorkers__java__arguments" in application settings to do this. What is the equivalent of that for custom handlers?Please note I want to do this using application settings. not host.json as we need vscode impl, we need to programmatically set these.
What language does your question apply to? (e.g. C#, JavaScript, Java, All)
Ballerina(Custom Handlers)
The text was updated successfully, but these errors were encountered: