[Pywps-commits] r560 - trunk/pywps/WPS
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Mon Sep 1 23:26:01 CEST 2008
Author: jachym
Date: 2008-09-01 23:26:01 +0200 (Mon, 01 Sep 2008)
New Revision: 560
Modified:
trunk/pywps/WPS/Execute.py
Log:
maxOperations in config file set to 0 -> infinity
Modified: trunk/pywps/WPS/Execute.py
===================================================================
--- trunk/pywps/WPS/Execute.py 2008-09-01 21:06:39 UTC (rev 559)
+++ trunk/pywps/WPS/Execute.py 2008-09-01 21:26:01 UTC (rev 560)
@@ -724,7 +724,8 @@
if dir.find("pywps") == 0:
pyWPSDirs += 1
- if pyWPSDirs >= maxOperations:
+ if pyWPSDirs >= maxOperations and\
+ maxOperations != 0:
raise self.wps.exceptions.ServerBusy()
# create temp dir
More information about the Pywps-commits
mailing list