Artyom Lukianov has uploaded a new change for review.

Change subject: Explicit casting of port to string in cannonizeHostPort function
......................................................................

Explicit casting of port to string in cannonizeHostPort function

Change-Id: I5a3082abee5f27f84a7731d783027a30fa02d846
Bug-Url: https://bugzilla.redhat.com/1127776
Signed-off-by: Artyom Lukianov <[email protected]>
---
M lib/vdsm/vdscli.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/09/31209/1

diff --git a/lib/vdsm/vdscli.py b/lib/vdsm/vdscli.py
index ae47635..7a27661 100644
--- a/lib/vdsm/vdscli.py
+++ b/lib/vdsm/vdscli.py
@@ -88,7 +88,7 @@
         addr = hostPort.group('Host')
         port = hostPort.group('Port') or port
 
-    return addr + ':' + port
+    return addr + ':' + str(port)
 
 
 def connect(hostPort=None, useSSL=None, tsPath=None,


-- 
To view, visit http://gerrit.ovirt.org/31209
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5a3082abee5f27f84a7731d783027a30fa02d846
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Artyom Lukianov <[email protected]>
_______________________________________________
vdsm-patches mailing list
[email protected]
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches

Reply via email to