Change port 8080 to 46658

This commit is contained in:
Jae Kwon
2015-12-01 15:27:50 -08:00
parent 4fc7aa234f
commit 7931e2b9ca
4 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ import (
func main() {
// Start the listener
_, err := server.StartListener("tcp://127.0.0.1:8080", example.NewCounterApplication())
_, err := server.StartListener("tcp://127.0.0.1:46658", example.NewCounterApplication())
if err != nil {
Exit(err.Error())
}