Skip to content

Commit 5a10d1d

Browse files
authored
Merge pull request #50215 from sethmanheim/sb-fix
Fixing image
2 parents 8c709f8 + f618be2 commit 5a10d1d

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed
Loading

articles/service-bus-messaging/service-bus-tutorial-topics-subscriptions-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ If you choose to install and use the CLI locally, this tutorial requires that yo
4848

4949
Each [subscription to a topic](service-bus-messaging-overview.md#topics) can receive a copy of each message. Topics are fully protocol and semantically compatible with Service Bus queues. Service Bus topics support a wide array of selection rules with filter conditions, with optional actions that set or modify message properties. Each time a rule matches, it produces a message. To learn more about rules, filters, and actions, follow this [link](topic-filters.md).
5050

51-
## Log in to Azure
51+
## Sign in to Azure
5252

53-
Once CLI is installed, open a command prompt and issue the following commands to log in to Azure. These steps are not necessary if you're using Cloud Shell:
53+
Once CLI is installed, open a command prompt and issue the following commands to sign in to Azure. These steps are not necessary if you're using Cloud Shell:
5454

55-
1. If you are using Azure CLI locally, run the following command to log in to Azure. This login step is not necessary if you're running these commands in Cloud Shell:
55+
1. If you are using Azure CLI locally, run the following command to sign in to Azure. This sign on step is not necessary if you're running these commands in Cloud Shell:
5656

5757
```azurecli-interactive
5858
az login

articles/service-bus-messaging/service-bus-tutorial-topics-subscriptions-portal.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ To complete this tutorial, make sure you have installed:
4343

4444
Each [subscription to a topic](service-bus-messaging-overview.md#topics) can receive a copy of each message. Topics are fully protocol and semantically compatible with Service Bus queues. Service Bus topics support a wide array of selection rules with filter conditions, with optional actions that set or modify message properties. Each time a rule matches, it produces a message. To learn more about rules, filters, and actions, follow this [link](topic-filters.md).
4545

46-
## Log on to the Azure portal
46+
## Sign in to the Azure portal
4747

48-
First, go to the [Azure portal][Azure portal] and log on using your Azure subscription. The first step is to create a Service Bus namespace of type **Messaging**.
48+
First, go to the [Azure portal][Azure portal] and sign in using your Azure subscription. The first step is to create a Service Bus namespace of type **Messaging**.
4949

5050
## Create a Service Bus namespace
5151

articles/service-bus-messaging/service-bus-tutorial-topics-subscriptions-powershell.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In this tutorial, you learn how to:
3030
3131
An example of this scenario is an inventory assortment update for multiple retail stores. In this scenario, each store, or set of stores, gets messages intended for them to update their assortments. This tutorial shows how to implement this scenario using subscriptions and filters. First, you create a topic with 3 subscriptions, add some rules and filters, and then send and receive messages from the topic and subscriptions.
3232

33-
![queue](./media/service-bus-quickstart-powershell/quick-start-queue.png)
33+
![topic](./media/service-bus-tutorial-topics-subscriptions-powershell/about-service-bus-topic.png)
3434

3535
If you do not have an Azure subscription, create a [free account][] before you begin.
3636

@@ -45,17 +45,17 @@ This tutorial requires that you run the latest version of Azure PowerShell. If y
4545

4646
[!INCLUDE [cloud-shell-try-it.md](../../includes/cloud-shell-try-it.md)]
4747

48-
## Log in to Azure
48+
## Sign in to Azure
4949

50-
Issue the following commands to log on to Azure. These steps are not necessary if you're running PowerShell commands in Cloud Shell:
50+
Issue the following commands to sign in to Azure. These steps are not necessary if you're running PowerShell commands in Cloud Shell:
5151

5252
1. Install the Service Bus PowerShell module:
5353

5454
```azurepowershell-interactive
5555
Install-Module AzureRM.ServiceBus
5656
```
5757

58-
2. Run the following command to log in to Azure:
58+
2. Run the following command to sign in to Azure:
5959

6060
```azurepowershell-interactive
6161
Login-AzureRmAccount
@@ -70,7 +70,7 @@ Issue the following commands to log on to Azure. These steps are not necessary i
7070

7171
## Provision resources
7272

73-
After logging in to Azure, issue the following commands to provision Service Bus resources. Be sure to replace all placeholders with the appropriate values:
73+
After signing in to Azure, issue the following commands to provision Service Bus resources. Be sure to replace all placeholders with the appropriate values:
7474

7575
```azurepowershell-interactive
7676
# Create a resource group

0 commit comments

Comments
 (0)