Allow late connecting

This commit is contained in:
Jae Kwon
2016-03-23 21:07:03 -07:00
parent 6785b9a3b6
commit 83fc4fc3b6
2 changed files with 59 additions and 34 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ func startApp() *process.Process {
func startClient() *tmspcli.Client {
// Start client
client, err := tmspcli.NewClient("tcp://127.0.0.1:46658")
client, err := tmspcli.NewClient("tcp://127.0.0.1:46658", true)
if err != nil {
panic("connecting to counter_app: " + err.Error())
}