Skip to content

Commit dc3e291

Browse files
Removed DefaultAzureCredential name from checkpoint store readme (#2891)
Note that this does *not* fix the link to DefaultAzureCredential in the LINKS section because there is no current link for DeveloperToolsCredential.
1 parent dbb8e6b commit dc3e291

File tree

1 file changed

+3
-3
lines changed
  • sdk/eventhubs/azure_messaging_eventhubs_checkpointstore_blob

1 file changed

+3
-3
lines changed

sdk/eventhubs/azure_messaging_eventhubs_checkpointstore_blob/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ cargo add azure_identity tokio azure_messaging_eventhubs azure_storage_blob
5858

5959
Before interacting with Azure services, you need a credential to use to authenticate and authorize the user.
6060

61-
The example shown below uses a [`DefaultAzureCredential`][default_cred_ref], which is appropriate for most local development environments. Additionally, we recommend using a managed identity for authentication in production environments. You can find more information on different ways of authenticating and their corresponding credential types in the [Azure Identity] documentation.
61+
The example shown below uses a [`DeveloperToolsCredential`][default_cred_ref], which is appropriate for most local development environments. Additionally, we recommend using a managed identity for authentication in production environments. You can find more information on different ways of authenticating and their corresponding credential types in the [Azure Identity] documentation.
6262

63-
The `DefaultAzureCredential` will automatically pick up on an Azure CLI authentication. Ensure you are logged in with the Azure CLI:
63+
The `DeveloperToolsCredential` will automatically pick up on an Azure CLI authentication. Ensure you are logged in with the Azure CLI:
6464

6565
```azurecli
6666
az login
6767
```
6868

69-
Instantiate a `DefaultAzureCredential` to pass to the client. The same instance of a token credential can be used with multiple clients if they will be authenticating with the same identity.
69+
Instantiate a `DeveloperToolsCredential` to pass to the client. The same instance of a token credential can be used with multiple clients if they will be authenticating with the same identity.
7070

7171
### Basic Example
7272

0 commit comments

Comments
 (0)