From: Brian Warner Date: Thu, 15 Jan 2009 02:14:59 +0000 (-0700) Subject: web/operations: undo the disable-ophandle-expiration change that inadvertently got... X-Git-Tag: allmydata-tahoe-1.3.0~190 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=e9d43341599a7bf6446b42f2ae792bcbd6cd6160;p=tahoe-lafs%2Ftahoe-lafs.git web/operations: undo the disable-ophandle-expiration change that inadvertently got included in zooko's recent 'rename wapi.txt to webapi.txt' patch, causing test failures --- diff --git a/src/allmydata/web/operations.py b/src/allmydata/web/operations.py index 31ff4467..2466ecda 100644 --- a/src/allmydata/web/operations.py +++ b/src/allmydata/web/operations.py @@ -109,7 +109,7 @@ class OphandleTable(rend.Page, service.Service): if ophandle in self.timers and self.timers[ophandle].active(): self.timers[ophandle].cancel() self.timers.pop(ophandle, None) - # self.handles.pop(ophandle, None) + self.handles.pop(ophandle, None) class ReloadMixin: REFRESH_TIME = 1*MINUTE