From 691f000fe1d29803dc19febbea8274ee07b3240c Mon Sep 17 00:00:00 2001 From: Samuel M Smith Date: Thu, 5 Jun 2014 09:40:27 -0600 Subject: [PATCH] Changed Rx and Tx behaviors to ServiceAllRx and ServiceAllTx from ServiceAll to reduce unnecessary queue checks --- salt/daemons/flo/core.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/salt/daemons/flo/core.py b/salt/daemons/flo/core.py index 6f8baefd30..ef67dfa43c 100644 --- a/salt/daemons/flo/core.py +++ b/salt/daemons/flo/core.py @@ -422,8 +422,8 @@ class Rx(ioflo.base.deeding.Deed): ''' Process inboud queues ''' - self.udp_stack.value.serviceAll() - self.uxd_stack.value.serviceAll() + self.udp_stack.value.serviceAllRx() + self.uxd_stack.value.serviceAllRx() class Tx(ioflo.base.deeding.Deed): ''' @@ -444,8 +444,8 @@ class Tx(ioflo.base.deeding.Deed): ''' Process inbound queues ''' - self.uxd_stack.value.serviceAll() - self.udp_stack.value.serviceAll() + self.uxd_stack.value.serviceAllTx() + self.udp_stack.value.serviceAllTx() class Router(ioflo.base.deeding.Deed):