[Opensrf-commits] r2065 - trunk/src/python/osrf (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Nov 9 09:59:23 EST 2010
Author: dbs
Date: 2010-11-09 09:59:21 -0500 (Tue, 09 Nov 2010)
New Revision: 2065
Modified:
trunk/src/python/osrf/server.py
Log:
Typos: s/wait_for_child/try_wait_child/ and s/min_childen/min_children/
Modified: trunk/src/python/osrf/server.py
===================================================================
--- trunk/src/python/osrf/server.py 2010-11-09 14:56:01 UTC (rev 2064)
+++ trunk/src/python/osrf/server.py 2010-11-09 14:59:21 UTC (rev 2065)
@@ -35,7 +35,7 @@
self.service = service # service name
self.max_requests = 0 # max child requests
self.max_children = 0 # max num of child processes
- self.min_childen = 0 # min num of child processes
+ self.min_children = 0 # min num of child processes
self.num_children = 0 # current num children
self.osrf_handle = None # xmpp handle
self.routers = [] # list of registered routers
@@ -114,7 +114,7 @@
if self.try_new_child(data):
continue
- self.wait_for_child()
+ self.try_wait_child()
except KeyboardInterrupt:
self.cleanup()
More information about the opensrf-commits
mailing list