You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated Dapr runtime/CLI version used in integration tests (#1485)
* Updated itests.yml to use latest 1.15 runtime and CLI versions over 1.14 versions
* Updated CLI argument name as `dapr-http-max-request-size` was changed in a recent update included in the CLI
Signed-off-by: Whit Waldo <[email protected]>
Copy file name to clipboardExpand all lines: examples/Client/DistributedLock/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ cd examples/Client/DistributedLock
24
24
In order to run the application that generates data for the workers to process, simply run the following command:
25
25
26
26
```bash
27
-
dapr run --components-path ./Components --app-id generator -- dotnet run
27
+
dapr run --resources-path ./Components --app-id generator -- dotnet run
28
28
```
29
29
30
30
This application will create a new file to process once every 10 seconds. The files are stored in `DistributedLock/tmp`.
@@ -33,8 +33,8 @@ This application will create a new file to process once every 10 seconds. The fi
33
33
In order to properly demonstrate locking, this application will be run more than once with the same App ID. However, the applications do need different ports in order to properly receive bindings. Run them with the command below:
34
34
35
35
```bash
36
-
dapr run --components-path ./Components --app-id worker --app-port 5000 -- dotnet run
37
-
dapr run --components-path ./Components --app-id worker --app-port 5001 -- dotnet run
36
+
dapr run --resources-path ./Components --app-id worker --app-port 5000 -- dotnet run
37
+
dapr run --resources-path ./Components --app-id worker --app-port 5001 -- dotnet run
38
38
```
39
39
40
40
After running the applications, they will attempt to process files. You should see output such as:
0 commit comments