Skip to content

Commit

Permalink
use the latest options for port (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
youngbupark authored Sep 29, 2020
1 parent 7e20fe9 commit 4beb217
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions example/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cd example/serving/http
dapr run --app-id serving \
--app-protocol http \
--app-port 8080 \
--port 3500 \
--dapr-http-port 3500 \
--log-level debug \
--components-path ./config \
go run main.go
Expand All @@ -24,7 +24,7 @@ cd example/serving/grpc
dapr run --app-id serving \
--app-protocol grpc \
--app-port 50001 \
--port 3500 \
--dapr-grpc-port 3500 \
--log-level debug \
--components-path ./config \
go run main.go
Expand All @@ -39,7 +39,7 @@ cd example/client
dapr run --app-id caller \
--components-path ./config \
--log-level debug \
go run main.go
go run main.go
```

## API
Expand Down
4 changes: 2 additions & 2 deletions example/pubsub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dapr run --app-id sub \
--dapr-http-port 3500 \
--log-level debug \
--components-path ../config \
go run sub.go
go run sub.go
```

### Run Publisher
Expand All @@ -36,7 +36,7 @@ Please change directory to pubsub/pub and run the following command:
dapr run --app-id pub \
--log-level debug \
--components-path ../config \
go run pub.go
go run pub.go
```

## Result
Expand Down

0 comments on commit 4beb217

Please sign in to comment.