12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- - Web interface:
- - present status in addition to state (e.g. spawnerr, etc, same as
- supervisorctl)
- - provide "restart all" functionality
- - Documentation:
- - In nodaemon mode, child processes will be sent SIGINT when Ctrl-C
- is pressed.
- - Error conditions when X-bit not set on command file.
- - SUPERVISOR_ENABLED envvar.
- - stopsignal can be TERM, HUP, INT, QUIT, KILL, USR1, or USR2
- - Unit test the http_client package.
- - Unit tests for meld classes and ui server.
- - Usage messages when we invoke supervisord/supervisorctl -h
- - Tail main log.
- - Figure out how to test the actual supervisord class.
- - Test log rotation.
- - Command-line arg tests.
- - supervisorctl one-shot tests.
- - packaging.
- - test under py 2.3 to make setup.py assertions true
- - supervisorctl command history
- - test startup as root
- - stop logging all RPC requests in info mode when we ship
- - Collector issue 152:
- I'd like supervisor to look after a number of postgres instances
- (well, initially only 1, but I will need it to manage 3). The first
- difficulty I had was that the postgres start-up program (pg_ctl)
- takes an options param that it passes directly to the postmaster
- program it controls, which can contain several options that only
- the postmaster understands and it expects these to be in quotes so
- they are treated as a group, e.g pg_ctl -o "-p 4321 -h hostname -d
- datadir" but supervisor doesn't appear to preserve the quotes. In
- my case I only need the one option so I used -o "-p4321", as a
- workaround.
|