Hello Saggi Mizrahi,

I'd like you to do a code review.  Please visit

    https://gerrit.ovirt.org/38990

to review the following change.

Change subject: stomp: make subscription class local
......................................................................

stomp: make subscription class local

Change-Id: Iabe55399860e92e7a0a41feba9879a8b82d5c786
Signed-off-by: Saggi Mizrahi <smizr...@redhat.com>
Signed-off-by: pkliczewski <piotr.kliczew...@gmail.com>
---
M lib/yajsonrpc/stomp.py
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/90/38990/1

diff --git a/lib/yajsonrpc/stomp.py b/lib/yajsonrpc/stomp.py
index 3f31954..2be7a51 100644
--- a/lib/yajsonrpc/stomp.py
+++ b/lib/yajsonrpc/stomp.py
@@ -366,7 +366,7 @@
 
     def put_subscribe(self, destination, ack=None):
         subid = self._aclient.subscribe(self._adisp, destination, ack)
-        sub = Subsciption(self, subid, ack)
+        sub = _Subsciption(self, subid, ack)
         self._registerSubscription(sub)
         return sub
 
@@ -575,7 +575,7 @@
         return subscriptionID
 
 
-class Subsciption(object):
+class _Subsciption(object):
     def __init__(self, client, subid, ack):
         self._ack = ack
         self._subid = subid


-- 
To view, visit https://gerrit.ovirt.org/38990
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iabe55399860e92e7a0a41feba9879a8b82d5c786
Gerrit-PatchSet: 1
Gerrit-Project: vdsm
Gerrit-Branch: master
Gerrit-Owner: Piotr Kliczewski <piotr.kliczew...@gmail.com>
Gerrit-Reviewer: Saggi Mizrahi <smizr...@redhat.com>
_______________________________________________
vdsm-patches mailing list
vdsm-patches@lists.fedorahosted.org
https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches

Reply via email to