From 2b6f4058d66e74e54e24a45e9401172e007befde Mon Sep 17 00:00:00 2001 From: mikeee Date: Tue, 9 Jul 2024 13:34:30 +0100 Subject: [PATCH] test: fix startup Signed-off-by: mikeee --- examples/dist-scheduler/README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/examples/dist-scheduler/README.md b/examples/dist-scheduler/README.md index b329f391..a3b2d5a1 100644 --- a/examples/dist-scheduler/README.md +++ b/examples/dist-scheduler/README.md @@ -29,13 +29,12 @@ timeout_seconds: 60 --> ```bash - dapr run \ - --app-id=distributed-scheduler \ - --app-port 50070 \ - --app-protocol grpc \ - --scheduler-host-address localhost:50006 - --log-level debug \ - -- go run main.go +dapr run --app-id=distributed-scheduler \ + --app-port 50070 \ + --app-protocol grpc \ + --scheduler-host-address=localhost:50006 \ + --log-level debug \ + go run main.go ```