summaryrefslogtreecommitdiff
path: root/system/addon/api.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-12-19 11:04:20 -0800
committerSteve Manuel <nilslice@gmail.com>2016-12-19 11:04:20 -0800
commit43fd3472dd9d19aa1f602ce3fd3555f03312b99b (patch)
treefcd1a2e891a530d8812538c8bebe39f6fc491980 /system/addon/api.go
parentbab8caaf4d599da47f296bc9e2940b11cb37aa4f (diff)
adding http port to config and removing hardcoded url from addons api
Diffstat (limited to 'system/addon/api.go')
-rw-r--r--system/addon/api.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/system/addon/api.go b/system/addon/api.go
index 7df31ef..4c3152b 100644
--- a/system/addon/api.go
+++ b/system/addon/api.go
@@ -20,7 +20,6 @@ func ContentAll(namespace string) []byte {
buf := []byte{}
r := bytes.NewReader(buf)
url := fmt.Sprintf(endpoint, host, port, namespace)
- fmt.Println(url)
req, err := http.NewRequest(http.MethodGet, url, r)
if err != nil {