Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Merge pull request #45 from kushthedude/port
Browse files Browse the repository at this point in the history
fix: migrate service from port 10010 to 10009
  • Loading branch information
kushthedude authored Sep 7, 2020
2 parents d2fb90e + 28ec1cf commit 866f5bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ docker:
docker-run:
(docker rm -f meshery-osm) || true
docker run --name meshery-osm -d \
-p 10010:10010 \
-p 10009:10009 \
-e DEBUG=true \
layer5/meshery-osm

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
)

var (
gRPCPort = flag.Int("grpc-port", 10010, "The gRPC server port")
gRPCPort = flag.Int("grpc-port", 10009, "The gRPC server port")
)

var log grpclog.LoggerV2
Expand Down

0 comments on commit 866f5bd

Please sign in to comment.