Skip to content

Commit a2d6006

Browse files
committed
Update steps, change date
1 parent a44128d commit a2d6006

9 files changed

+13
-15
lines changed

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/1-introduction.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
prefetch-feature-rollout: true
66
title: Introduction
77
description: Learn to update an application to implement automatic updates that are nearly instantaneous.
8-
ms.date: 08/12/2024
8+
ms.date: 01/22/2025
99
author: craigshoemaker
1010
ms.author: cshoe
1111
ms.topic: unit

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/2-analyze-limitations-of-polling-in-a-web-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
prefetch-feature-rollout: true
66
title: Analyze the limitations of a polling-based web app
77
description: Discuss the drawbacks of a web application that relies on polling to keep the UI updated.
8-
ms.date: 08/12/2024
8+
ms.date: 01/22/2025
99
author: craigshoemaker
1010
ms.author: cshoe
1111
ms.topic: unit

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/4-enable-automatic-updates-in-a-web-app-using-signalr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
prefetch-feature-rollout: true
66
title: Enable automatic updates in a web application using SignalR Service
77
description: Learn how a push-based architecture can make a better performing application.
8-
ms.date: 08/12/2024
8+
ms.date: 01/22/2025
99
author: craigshoemaker
1010
ms.author: cshoe
1111
ms.topic: unit

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/6-host-a-static-website-using-a-storage-account.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
prefetch-feature-rollout: true
66
title: Use a storage account to host a static website
77
description: Learn how an Azure Storage account is able to host static files over a secure server.
8-
ms.date: 08/12/2024
8+
ms.date: 01/22/2025
99
author: craigshoemaker
1010
ms.author: cshoe
1111
ms.topic: unit

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/7-exercise-host-a-static-website-using-a-storage-account.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
prefetch-feature-rollout: true
66
title: Exercise - Use a storage account to host a static website
77
description: Customize your storage account, publish your function app and view your application hosted in the cloud.
8-
ms.date: 08/12/2024
8+
ms.date: 01/22/2025
99
author: craigshoemaker
1010
ms.author: cshoe
1111
ms.topic: unit

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/8-summary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
prefetch-feature-rollout: true
66
title: Summary
77
description: Review changes made to your application that removed polling and added server push technologies.
8-
ms.date: 08/12/2024
8+
ms.date: 01/22/2025
99
author: craigshoemaker
1010
ms.author: cshoe
1111
ms.topic: unit

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/includes/3-exercise-analyze-limitations-of-polling-in-a-web-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Before you change the prototype, you need to run it to validate the assumptions.
8181

8282
1. If you receive a notification about installing the latest Azure Functions Core Tools, select **Install**.
8383

84-
## Know the client and server URLs
84+
## Get the client and server URLs
8585

8686
When running locally, the client and server applications need to know where to find each other. The URLs are:
8787

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/includes/5-exercise-enable-automatic-updates-in-a-web-app-using-signalr.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -132,15 +132,13 @@ Connect your new function app to the GitHub repository to enable continuous depl
132132
1. This deployment configuration creates a GitHub Actions workflow file in the repository. You need to update the workflow file to use the correct package path for the function app.
133133

134134
<!--- Remove this content section after the OIDC subject bug gets fixed by the Functions folks -->
135-
At this point, your GitHub deployment might generate an error because of a wrong configuration in the user-assigned managed identity created in your resource group in Azure.
135+
At this point, the managed identity and Functions app have been created but not connected together.
136136

137-
## Update the managed identity
137+
## Update the Functions app identity
138138

139-
1. In your new function app page in the Azure portal, select your resource group in **Overview** > **Essentials**, then select the managed identity under **Resources**. This managed identity was created by Functions when you enabled the GitHub deployment.
140-
1. In the **Managed Identity** page, select **Settings** > **Federated credentials** and then select the existing credential.
141-
1. In **Connect your Github account**, change these settings:
142-
* **Entity**: from **Branch** to **Environment**
143-
1. Select **Update** to update the credential.
139+
1. In your new function app page in the Azure portal, in the **Settings** section, select **Identity**.
140+
1. In the **User assigned** section, select **+Add**.
141+
1. Select the new managed identity then select **Add**. This adds the user-assigned managed identity to the Functions app.
144142
<!--- end removal section -->
145143

146144
## Edit GitHub deployment workflow

learn-pr/advocates/automatic-update-of-a-webapp-using-azure-functions-and-signalr/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metadata:
1212
prefetch-feature-rollout: true
1313
title: Enable real-time updates in a web application using Azure Functions and SignalR Service
1414
description: Change a JavaScript web app update mechanism from polling to real-time push-based architecture with SignalR Service, Azure Cosmos DB and Azure Functions. Use Vue.js and JavaScript to use SignalR using Visual Studio Code.
15-
ms.date: 08/12/2024
15+
ms.date: 01/22/2025
1616
author: craigshoemaker
1717
ms.author: cshoe
1818
ms.topic: module-standard-task-based

0 commit comments

Comments
 (0)