--- /dev/null
+From 9a38b89bc0c25f8d86a652e42438d658df6cce60 Mon Sep 17 00:00:00 2001
+From: Aleksander Mistewicz <a.mistewicz@samsung.com>
+Date: Wed, 13 Dec 2017 19:53:49 +0100
+Subject: [PATCH] DRAGONS AHEAD do not use it if you can
+
+Change-Id: I9478d087531813201fba842b28798bb46cd3c5c0
+---
+ http/client/client.go | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/http/client/client.go b/http/client/client.go
+index 4d86d8e..6257586 100644
+--- a/http/client/client.go
++++ b/http/client/client.go
+@@ -27,6 +27,7 @@ import (
+ "io/ioutil"
+ "net"
+ "net/http"
++ "strings"
+ "time"
+
+ "git.tizen.org/tools/boruta"
+@@ -228,6 +229,7 @@ func (client *BorutaClient) AcquireWorker(reqID boruta.ReqID) (
+ }
+ var accInfo locAccessInfo
+ err = processResponse(resp, &accInfo)
++ accInfo.Addr.IP = net.ParseIP(strings.TrimLeft(strings.Split(client.url, ":")[1], "/"))
+ accInfoRet := &boruta.AccessInfo{
+ Addr: accInfo.Addr,
+ Key: accInfo.Key,
+--
+2.7.4
+