Skip to content

Commit d6b95f0

Browse files
committed
address feedback
1 parent 6d235a6 commit d6b95f0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-functions/durable/quickstart-netherite.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In particular, this quickstart assumes that you have already:
2626
1. Created an Azure Functions project on your local machine.
2727
2. Added Durable Functions to your project with an [orchestrator function](durable-functions-bindings.md#orchestration-trigger) and a [client function](durable-functions-bindings.md#orchestration-client) that triggers it.
2828
3. Configured the project for local debugging.
29-
4. Learned how to deploy an Azure Functions project to Azure
29+
4. Learned how to deploy an Azure Functions project to Azure.
3030

3131
If this isn't the case, we suggest you start with one of the following articles, which provides detailed instructions on how to achieve all the requirements above:
3232

@@ -104,7 +104,7 @@ While the function app is running, Netherite will publish load information about
104104
105105
## Run your app on Azure
106106

107-
You need to create an Azure Functions app on Azure. To do this, follow the instructions in the *Create a function app* section of [these instructions](/articles/azure-functions/functions-create-function-app-portal.md#create-a-function-app-a-function).
107+
You need to create an Azure Functions app on Azure. To do this, follow the instructions in the **Create a function app** section of [these instructions](/articles/azure-functions/functions-create-function-app-portal.md#create-a-function-app-a-function).
108108

109109
### Set up Event Hubs
110110

@@ -123,15 +123,15 @@ Follow [these steps](/articles/event-hubs/event-hubs-create#create-an-event-hubs
123123

124124
#### Obtain the Event Hubs connection string
125125

126-
To obtain the connection string for your Event Hubs namespace, go to your Event Hubs namespace in the Azure portal, select "Shared access policies", and then select "RootManagedSharedAccessKey". This should reveal a field named "Connection string-primary key" and that field's value is the connection string.
126+
To obtain the connection string for your Event Hubs namespace, go to your Event Hubs namespace in the Azure portal, select **Shared access policies**, and then select **RootManagedSharedAccessKey**. This should reveal a field named **Connection string-primary key** and that field's value is the connection string.
127127

128128
Below are guiding screenshots on how to find this data in the portal:
129129

130130
![Find the connection string primary key on the portal"](./media/quickstart-netherite/namespace-connection-string.png)
131131

132132
### Add connection string as an application setting
133133

134-
You need to add your connection string as an application setting in your Function App. To do this through the Azure portal, go to your Function App view, select **Configuration**, and then select **New application setting**. This is where you can assign `EventHubsConnection` to map to your connection string. Below are some guiding images.
134+
You need to add your connection string as an application setting in your function app. To do this through the Azure portal, go to your function app view, select **Configuration**, and then select **New application setting**. This is where you can assign `EventHubsConnection` to map to your connection string. Below are some guiding images.
135135

136136
![In the Function App view, go to "configuration" and select "new application setting."](./media/quickstart-netherite/add-configuration.png)
137137
![Enter `EventHubsConnection` as the name, and the connection string as its value.](./media/quickstart-netherite/enter-configuration.png)
@@ -150,7 +150,7 @@ If your app is running on the Elastic Premium Plan, it is recommended that you e
150150
> [!NOTE]
151151
> Skip this section if your app is running on Linux.
152152
153-
Netherite requires a 64-bit architecture to work. Starting on Functions V4, this should be the default. You can usually validate this in the portal: under "Configuration", select "General Settings" and then ensure the "Platform" field is set to "64 Bit". If you don't see this option in the portal, then it's possible you're already running on a 64-bit platform. For example, Linux apps won't show this setting because they only support 64-bit.
153+
Netherite requires a 64-bit architecture to work. Starting on Functions V4, this should be the default. You can usually validate this in the portal: under **Configuration**, select **General Settings** and then ensure the **Platform** field is set to **64 Bit**. If you don't see this option in the portal, then it's possible you're already running on a 64-bit platform. For example, Linux apps won't show this setting because they only support 64-bit.
154154

155155
![Configure runtime to use 64 bit in the portal.](./media/quickstart-netherite/ensure-64bit-architecture.png)
156156

0 commit comments

Comments
 (0)