From aa6de6ed2b52dd1f2dde762a0f682f1ca106a8fa Mon Sep 17 00:00:00 2001 From: Chris Gillum Date: Tue, 3 Sep 2024 09:30:40 -0700 Subject: [PATCH] Update taskhubs.md with correct storageProvider type value It appears there was a mistake in one of the code samples in the documentation, showing "MicrosoftSQL" as the `storageProvider/type` value in host.json when it should actually be "mssql". This commit fixes the doc mistake. --- docs/taskhubs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/taskhubs.md b/docs/taskhubs.md index 2199f9e..4989454 100644 --- a/docs/taskhubs.md +++ b/docs/taskhubs.md @@ -25,7 +25,7 @@ For Durable Functions apps, explicit task hub names are configured in the `exten "durableTask": { "hubName": "MyTaskHub", "storageProvider": { - "type": "MicrosoftSQL", + "type": "mssql", "connectionStringName": "SQLDB_Connection" } }