Skip to content

Commit efc0146

Browse files
committed
Removing changes to client.py and adding additional steps to readme.md
Signed-off-by: Ryan Lettieri <[email protected]>
1 parent bd56a35 commit efc0146

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

durabletask/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ def __init__(self, *,
9797
log_handler: Optional[logging.Handler] = None,
9898
log_formatter: Optional[logging.Formatter] = None,
9999
secure_channel: bool = False):
100-
self._metadata = metadata
101100
channel = shared.get_grpc_channel(host_address, metadata, secure_channel=secure_channel)
102101
self._stub = stubs.TaskHubSidecarServiceStub(channel)
103102
self._logger = shared.get_logger("client", log_handler, log_formatter)

examples/dts/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ export ENDPOINT=<taskhubEndpoint>
3232
python3 -m pip install azure-identity
3333
```
3434

35+
6. Install the correct pacakges from the top level of this repository, i.e. durabletask-python/
36+
37+
```sh
38+
python3 -m pip install .
39+
```
40+
3541
## Running the examples
3642

3743
With one of the sidecars running, you can simply execute any of the examples in this directory using `python3`:

0 commit comments

Comments
 (0)