Skip to content

Commit c8573a2

Browse files
Merge pull request #260750 from spelluru/sbusfreshness1207
Freshness review, tested, updated as needed
2 parents 88ca656 + 6a6f6ab commit c8573a2

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

articles/service-bus-messaging/service-bus-nodejs-how-to-use-queues.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Get started with Azure Service Bus queues (JavaScript)
33
description: This tutorial shows you how to send messages to and receive messages from Azure Service Bus queues using the JavaScript programming language.
44
author: spelluru
55
ms.author: spelluru
6-
ms.date: 11/17/2022
6+
ms.date: 12/08/2023
77
ms.topic: quickstart
88
ms.devlang: javascript
99
ms.custom: devx-track-js, mode-api
@@ -96,7 +96,8 @@ You must have signed in with the Azure CLI's `az login` in order for your local
9696
1. Open your favorite editor, such as [Visual Studio Code](https://code.visualstudio.com/).
9797
1. Create a file called `send.js` and paste the below code into it. This code sends the names of scientists as messages to your queue.
9898
99-
The passwordless credential is provided with the [**DefaultAzureCredential**](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity#defaultazurecredential).
99+
> [!IMPORTANT]
100+
> The passwordless credential is provided with the [**DefaultAzureCredential**](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity#defaultazurecredential).
100101
101102
```javascript
102103
const { ServiceBusClient } = require("@azure/service-bus");

articles/service-bus-messaging/service-bus-nodejs-how-to-use-topics-subscriptions.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Get started with Azure Service Bus topics (JavaScript)
33
description: This tutorial shows you how to send messages to Azure Service Bus topics and receive messages from topics' subscriptions using the JavaScript programming language.
44
author: spelluru
55
ms.author: spelluru
6-
ms.date: 11/18/2022
6+
ms.date: 12/08/2023
77
ms.topic: quickstart
88
ms.devlang: javascript
99
ms.custom: devx-track-js, mode-api
@@ -97,6 +97,9 @@ You must have signed in with the Azure CLI's `az login` in order for your local
9797
1. Open your favorite editor, such as [Visual Studio Code](https://code.visualstudio.com/)
9898
2. Create a file called `sendtotopic.js` and paste the below code into it. This code will send a message to your topic.
9999
100+
> [!IMPORTANT]
101+
> The passwordless credential is provided with the [**DefaultAzureCredential**](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity#defaultazurecredential).
102+
100103
```javascript
101104
const { ServiceBusClient } = require("@azure/service-bus");
102105
const { DefaultAzureCredential } = require("@azure/identity");

0 commit comments

Comments
 (0)