@@ -13,7 +13,7 @@ Let's take a look at the Dapr [Actors building block](https://docs.dapr.io/devel
1313For this example, you will need:
1414
1515- [ Dapr CLI and initialized environment] ( https://docs.dapr.io/getting-started ) .
16- - [ .NET 7 SDK] ( https://dotnet.microsoft.com/download ) .
16+ - [ .NET 8 SDK] ( https://dotnet.microsoft.com/download ) .
1717- Docker Desktop
1818
1919### Step 2: Set up the environment
@@ -34,7 +34,7 @@ Run the `SmartDevice.Service`, which will start service itself and the Dapr side
3434<!-- STEP
3535name: Run actor service
3636expected_stdout_lines:
37- - "Request finished HTTP/1.1 GET http://127.0.0.1:5001/healthz - 200"
37+ - "Request finished HTTP/1.1 GET http://127.0.0.1:5001/dapr/config - 200"
3838expected_stderr_lines:
3939working_dir: .
4040output_match_mode: substring
@@ -50,14 +50,23 @@ dapr run --app-id actorservice --app-port 5001 --app-protocol http --dapr-http-p
5050Expected output:
5151
5252``` bash
53+ == APP == info: Microsoft.Hosting.Lifetime[14]
54+ == APP == Now listening on: http://localhost:5001
55+ == APP == info: Microsoft.Hosting.Lifetime[0]
56+ == APP == Application started. Press Ctrl+C to shut down.
57+ == APP == info: Microsoft.Hosting.Lifetime[0]
58+ == APP == Hosting environment: Production
59+ == APP == info: Microsoft.Hosting.Lifetime[0]
5360== APP == info: Microsoft.AspNetCore.Hosting.Diagnostics[1]
54- == APP == Request starting HTTP/1.1 GET http://127.0.0.1:5001/healthz - -
61+ == APP == Request starting HTTP/1.1 GET http://127.0.0.1:5001/dapr/config - application/json -
62+ == APP == warn: Microsoft.AspNetCore.HttpsPolicy.HttpsRedirectionMiddleware[3]
63+ == APP == Failed to determine the https port for redirect.
5564== APP == info: Microsoft.AspNetCore.Routing.EndpointMiddleware[0]
56- == APP == Executing endpoint ' Dapr Actors Health Check '
65+ == APP == Executing endpoint ' Dapr Actors Config '
5766== APP == info: Microsoft.AspNetCore.Routing.EndpointMiddleware[1]
58- == APP == Executed endpoint ' Dapr Actors Health Check '
67+ == APP == Executed endpoint ' Dapr Actors Config '
5968== APP == info: Microsoft.AspNetCore.Hosting.Diagnostics[2]
60- == APP == Request finished HTTP/1.1 GET http://127.0.0.1:5001/healthz - - - 200 - text/plain 5.2599ms
69+ == APP == Request finished HTTP/1.1 GET http://127.0.0.1:5001/dapr/config - 200 - application/json 30.6175ms
6170```
6271
6372### Step 4: Run the client app
0 commit comments