Skip to content

Commit

Permalink
[EH Pyproto] Release updates (#23349)
Browse files Browse the repository at this point in the history
* update docs

* add todo
  • Loading branch information
yunhaoling authored Mar 4, 2022
1 parent 2805d00 commit 17ea44b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
10 changes: 3 additions & 7 deletions sdk/eventhub/azure-eventhub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
# Release History

## 5.8.0a3 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
## 5.8.0a3 (2022-03-08)

### Other Changes

- Improved the performance of async sending and receiving.

## 5.8.0a2 (2022-02-09)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/azure-eventhub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ There, you can also find detailed instructions for using the Azure CLI, Azure Po
Install the Azure Event Hubs client library for Python with pip:

```
$ pip install azure-eventhub --pre
$ pip install azure-eventhub==5.8.0a3
```

### Authenticate the client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ async def listen(self, wait=False, batch=1, **kwargs):
return
for _ in range(batch):
if await asyncio.ensure_future(self._listen_one_frame(**kwargs)):
# TODO: compare the perf difference between ensure_future and direct await
break
except (OSError, IOError, SSLError, socket.error) as exc:
self._error = AMQPConnectionError(
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/azure-eventhub/samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ There, you can also find detailed instructions for using the Azure CLI, Azure Po

1. Install the Azure Event Hubs client library for Python with [pip](https://pypi.org/project/pip/):
```bash
pip install azure-eventhub
pip install azure-eventhub==5.8.0a3
```

To run samples that utilize the Azure Active Directory for authentication, please install the `azure-identity` library:
Expand Down

0 comments on commit 17ea44b

Please sign in to comment.