Chris McDonough 19 years ago
parent
commit
6d385e2709
2 changed files with 4 additions and 5 deletions
  1. 2 2
      TODO.txt
  2. 2 3
      src/supervisor/supervisorctl.py

+ 2 - 2
TODO.txt

@@ -32,8 +32,6 @@
 
 - reopen child logs when we get a logreopen signal
 
-- make sure pid file gets cleaned up when we quit
-
 - Collector issues 75, 76, 78, 79, 82, 84, 152.
 
 - Docs for collector 81.
@@ -41,3 +39,5 @@
 - Web interface
 
 - Option to include/disinclude stderr in child logs.
+
+- Unit test the http_client package.

+ 2 - 3
src/supervisor/supervisorctl.py

@@ -120,7 +120,6 @@ class Controller(cmd.Cmd):
         self._output("To quit, type ^D or use the quit command.")
 
     def _tailf(self, arg):
-        # cant really unit test this, sorry.
         if not self._upcheck():
             return
 
@@ -438,7 +437,7 @@ class Controller(cmd.Cmd):
                 if e.faultCode == rpc.Faults.SHUTDOWN_STATE:
                     self._output('ERROR: already shutting down')
             else:
-                self._output('Shutting down')
+                self._output('Shut down')
 
     def help_shutdown(self):
         self._output("shutdown \t\tShut the remote supervisord down.")
@@ -458,7 +457,7 @@ class Controller(cmd.Cmd):
                 if e.faultCode == rpc.Faults.SHUTDOWN_STATE:
                     self._output('ERROR: already shutting down')
             else:
-                self._output('Restarting supervisord')
+                self._output('Restarted supervisord')
 
     def help_reload(self):
         self._output("reload \t\tRestart the remote supervisord.")