summaryrefslogtreecommitdiffstats
path: root/sms-service/src/quorumclient/quorumclient.go
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2018-04-17 11:49:21 -0700
committerKiran Kamineni <kiran.k.kamineni@intel.com>2018-04-18 14:15:48 -0700
commitd2fb77cf298e97eeb998bf1a5e00f06431afd3fc (patch)
tree03c6d8ec2738e03b422c6a0aa18ad8d345fa9943 /sms-service/src/quorumclient/quorumclient.go
parent18ba7e30db0d8c10fa661224dad3d65e6c46abea (diff)
Added lock for quorum registration
Added lock for quorum registration Removed debug statement Issue-ID: AAF-92 Change-Id: Ib2de5ae7ed31b93b6853c78a70305a401ba3c014 Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
Diffstat (limited to 'sms-service/src/quorumclient/quorumclient.go')
-rw-r--r--sms-service/src/quorumclient/quorumclient.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/sms-service/src/quorumclient/quorumclient.go b/sms-service/src/quorumclient/quorumclient.go
index 7244720..05fc967 100644
--- a/sms-service/src/quorumclient/quorumclient.go
+++ b/sms-service/src/quorumclient/quorumclient.go
@@ -25,6 +25,7 @@ import (
"log"
"net/http"
"os"
+ "path/filepath"
smsauth "sms/auth"
smslogger "sms/log"
"strings"
@@ -63,10 +64,11 @@ func loadPGPKeys(prKeyPath string, pbKeyPath string) (string, string, error) {
//calls necessary initialization endpoints on the
//SMS webservice
func main() {
- idFilePath := "auth/myid"
- pbKeyPath := "auth/pbkey"
- prKeyPath := "auth/prkey"
- shardPath := "auth/shard"
+ podName := os.Getenv("HOSTNAME")
+ idFilePath := filepath.Join("auth", podName, "id")
+ pbKeyPath := filepath.Join("auth", podName, "pbkey")
+ prKeyPath := filepath.Join("auth", podName, "prkey")
+ shardPath := filepath.Join("auth", podName, "shard")
smslogger.Init("")
smslogger.WriteInfo("Starting Log for Quorum Client")