Eldad Marciano has uploaded a new change for review. Change subject: vmchannel: performance enhancment. changing thread name ......................................................................
vmchannel: performance enhancment. changing thread name Change-Id: I8489ec3a65ed9025eb91dfc2f408450b02fd7e0c Signed-off-by: emarcian <[email protected]> --- M vdsm/virt/vmchannels.py 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/42/36342/1 diff --git a/vdsm/virt/vmchannels.py b/vdsm/virt/vmchannels.py index c143162..e0b305e 100644 --- a/vdsm/virt/vmchannels.py +++ b/vdsm/virt/vmchannels.py @@ -167,8 +167,8 @@ events = NoIntrPoll(self._epoll.poll, 1) if events: for (fileno, event) in events: - _wait_for_events = threading.Thread(name='handle_events-%s' % fileno, target=self._handle_event, args=(fileno, event)) - _wait_for_events.start() + _handle_event = threading.Thread(name='handle_events-%s' % fileno, target=self._handle_event, args=(fileno, event)) + _handle_event.start() else: self._update_channels() if (self._timeout is not None) and (self._timeout > 0): -- To view, visit http://gerrit.ovirt.org/36342 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I8489ec3a65ed9025eb91dfc2f408450b02fd7e0c Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Eldad Marciano <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
