Skip to content

Commit 16d724a

Browse files
committed
Added comments for variables in the script
1 parent 9b57f92 commit 16d724a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

articles/event-hubs/event-hubs-python-get-started-send.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ Be sure to record the connection string and container name for later use in the
166166

167167
## [Connection String](#tab/connection-string)
168168

169-
[Get the connection string to the storage account](../storage/common/storage-configure-connection-string.md)
169+
Follow instructions from [Get the connection string to the storage account](../storage/common/storage-configure-connection-string.md) to get the connection string to the storage account, which you use in the script (`BLOB_STORAGE_CONNECTION_STRING`). You need the connection string and the name of the blob container you just created.
170+
170171

171172
---
172173

@@ -268,10 +269,10 @@ In this section, you create a Python script to receive events from your event hu
268269

269270
In the code, use real values to replace the following placeholders:
270271

271-
* `BLOB_STORAGE_CONNECTION_STRING`
272-
* `BLOB_CONTAINER_NAME`
273-
* `EVENT_HUB_CONNECTION_STR`
274-
* `EVENT_HUB_NAME`
272+
* `BLOB_STORAGE_CONNECTION_STRING` - Connection string to the Blob Storage account that you noted earlier.
273+
* `BLOB_CONTAINER_NAME` - Name of the blob container you created in the blob storage.
274+
* `EVENT_HUB_CONNECTION_STR` - Connection string to the Event Hubs namespace you noted earlier.
275+
* `EVENT_HUB_NAME` - Name of the event hub.
275276

276277
```python
277278
import asyncio

0 commit comments

Comments
 (0)