Skip to content

Commit c777bca

Browse files
committed
edits
1 parent 51b9f93 commit c777bca

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

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: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,21 @@ Before you change the prototype, you need to run it to validate the assumptions.
5656
|Azure Storage|Referred to as STORAGE_CONNECTION_STRING|
5757
|Resource Group|Referred to as RESOURCE_GROUP_NAME.|
5858
59-
1. Use a Node.js script to upload sample data into the database with the following command.
59+
1. At the terminal, still in the `setup-resources` directory, use a Node.js script to upload sample data into the database with the following command.
6060
6161
```bash
6262
npm start
6363
```
6464
65+
The output shows the starting data for the fictitious stock application:
66+
67+
```console
68+
Seed data added. Symbol ABC
69+
Seed data added. Symbol DEF
70+
Seed data added. Symbol GHI
71+
```
72+
73+
6574
1. In the terminal, navigate to the **root** folder.
6675
6776
```bash

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: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ The web client uses the SignalR client SDK to establish a connection to the serv
8888
git push origin main
8989
```
9090
91-
## Create the `signalr-send-message` function
91+
## Create the Azure Functions app
9292
9393
Create a function app and related resources in Azure to which you can publish the new functions code.
9494
@@ -123,24 +123,13 @@ Connect your new function app to the GitHub repository to enable continuous depl
123123
| Organization | Select your GitHub account. |
124124
| Repository | Search for and select `mslearn-advocates.azure-functions-and-signalr`. |
125125
| Branch | Select the **main** branch. |
126-
| Workflow Option| Select **Add a workflow ...**.|
127126
| Authentication type | Select **User-assigned-identity**.|
128127
| Subscription | Select the same subscription as seen at the top of the page. |
129128
| Identity | Select **Create new**.|
130129

131130
1. Select **Save** at the top of the section to save the settings. This creates a new workflow file in your forked repository.
132131
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.
133132

134-
<!--- Remove this content section after the OIDC subject bug gets fixed by the Functions folks -->
135-
At this point, the managed identity and Functions app have been created but not connected together.
136-
137-
## Update the Functions app identity
138-
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.
142-
<!--- end removal section -->
143-
144133
## Edit GitHub deployment workflow
145134

146135
1. In Visual Studio Code terminal, pull down the new workflow file from your fork (origin).

0 commit comments

Comments
 (0)