From e9d43341599a7bf6446b42f2ae792bcbd6cd6160 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@allmydata.com>
Date: Wed, 14 Jan 2009 19:14:59 -0700
Subject: [PATCH] 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

---
 src/allmydata/web/operations.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
-- 
2.45.2