--- a/Allura/allura/command/base.py
+++ b/Allura/allura/command/base.py
@@ -75,21 +75,3 @@
def teardown_globals(self):
self.registry.cleanup()
-class RestartableProcess(object):
-
- def __init__(self, log, *args, **kwargs):
- self._log = log
- self._args, self._kwargs = args, kwargs
- self.reinit()
-
- def reinit(self):
- self._process = Process(*self._args, **self._kwargs)
-
- def check(self):
- if not self.is_alive():
- self._log.error('Process %d has died, restarting', self.pid)
- self.reinit()
- self.start()
-
- def __getattr__(self, name):
- return getattr(self._process, name)