From a99eb83054d46846ee585f271029d2e82f7ecbd0 Mon Sep 17 00:00:00 2001 From: Taco Witte Date: Mon, 19 Sep 2022 14:31:34 +0200 Subject: [PATCH] fix: add required runtime setting and fix extension bundle version --- go/host.json | 4 ++-- go/local.settings-example.json | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/go/host.json b/go/host.json index 2888bdf..ac9559a 100644 --- a/go/host.json +++ b/go/host.json @@ -2,7 +2,7 @@ "version": "2.0", "extensionBundle": { "id": "Microsoft.Azure.Functions.ExtensionBundle", - "version": "[1.*, 2.0.0)" + "version": "[2.*, 3.0.0)" }, "customHandler": { "description": { @@ -10,4 +10,4 @@ }, "enableForwardingHttpRequest":true } -} \ No newline at end of file +} diff --git a/go/local.settings-example.json b/go/local.settings-example.json index 4793c8e..ee67388 100644 --- a/go/local.settings-example.json +++ b/go/local.settings-example.json @@ -1,6 +1,7 @@ { "IsEncrypted": false, "Values": { - "AzureWebJobsStorage": "YOUR_STORAGE_CONNECTION_STRING" + "AzureWebJobsStorage": "YOUR_STORAGE_CONNECTION_STRING", + "FUNCTIONS_WORKER_RUNTIME": "Custom" } -} \ No newline at end of file +}