From c5a736e61b746ebf5fe68e27701402fedc1bd675 Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Fri, 24 Sep 2004 22:26:31 +0000 Subject: [PATCH] renamed dataLoop --- direct/src/cluster/ClusterServer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/direct/src/cluster/ClusterServer.py b/direct/src/cluster/ClusterServer.py index 62725ee3df..bf88c7b923 100644 --- a/direct/src/cluster/ClusterServer.py +++ b/direct/src/cluster/ClusterServer.py @@ -65,12 +65,12 @@ class ClusterServer(DirectObject.DirectObject): self.daemon.serverReady(clusterDaemonClient, clusterDaemonPort) def startListenerPollTask(self): - # Run this task near the start of frame, sometime after the dataloop + # Run this task near the start of frame, sometime after the dataLoop taskMgr.add(self.listenerPollTask, "serverListenerPollTask",-40) def listenerPollTask(self, task): """ Task to listen for a new connection from the client """ - # Run this task after the dataloop + # Run this task after the dataLoop if self.qcl.newConnectionAvailable(): self.notify.info("New connection is available") rendezvous = PointerToConnection()