From a95957c424722bc08daeb57776d21c990318286b Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Fri, 7 Apr 2006 03:16:14 +0000 Subject: [PATCH] force timeout prc option --- direct/src/distributed/AsyncRequest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/distributed/AsyncRequest.py b/direct/src/distributed/AsyncRequest.py index 663607738d..40cadde6e6 100755 --- a/direct/src/distributed/AsyncRequest.py +++ b/direct/src/distributed/AsyncRequest.py @@ -72,7 +72,7 @@ class AsyncRequest(DirectObject): self.replyToChannelId=replyToChannelId self.neededObjects={} if __debug__: - if ForceTimeout > 0.0001: + if ForceTimeout >= 0.0: timeout = ForceTimeout self.timeoutTask=taskMgr.doMethodLater( timeout, self.timeout, "AsyncRequestTimer-%s"%(id(self,)))