Quellcode durchsuchen

*** empty log message ***

Chris McDonough vor 19 Jahren
Ursprung
Commit
3ba0f8998d
2 geänderte Dateien mit 5 neuen und 3 gelöschten Zeilen
  1. 2 0
      TODO.txt
  2. 3 3
      src/supervisor/supervisord.py

+ 2 - 0
TODO.txt

@@ -39,3 +39,5 @@
 - Docs for collector 81.
 - Docs for collector 81.
 
 
 - Web interface
 - Web interface
+
+- Option to include/disinclude stderr in child logs.

+ 3 - 3
src/supervisor/supervisord.py

@@ -671,9 +671,9 @@ class Supervisor:
         except socket.error, why:
         except socket.error, why:
             if why[0] == errno.EADDRINUSE:
             if why[0] == errno.EADDRINUSE:
                 port = str(self.options.xmlrpc_port.address)
                 port = str(self.options.xmlrpc_port.address)
-                self.options.usage('Another program is listening on the port '
-                                   'used for XML-RPC communications with '
-                                   'remote clients (%s).  Shut this program '
+                self.options.usage('Another program is already listening on '
+                                   'the port that our HTTP server is '
+                                   'configured to use (%s).  Shut this program '
                                    'down first before starting supervisord. ' %
                                    'down first before starting supervisord. ' %
                                    port)
                                    port)