From 4c792c8013f5713589f53dbdb47721febf139a85 Mon Sep 17 00:00:00 2001 From: Greg Smith Date: Wed, 9 Mar 2011 15:27:29 -0500 Subject: [PATCH] Add TODO, update history for 1.1.0 release --- HISTORY | 4 ++++ TODO | 21 +++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 TODO diff --git a/HISTORY b/HISTORY index 2c576a1c..3a6b8913 100644 --- a/HISTORY +++ b/HISTORY @@ -27,3 +27,7 @@ Add info messages for database and general work done (Greg) Map old verbose flag into a useful setting for the new logger (Greg) Document repmgrd startup restrictions and log info about them (Greg) + +1.1.0 2011-03-09 + Make options -U, -R and -p not mandatory (Jaime) + diff --git a/TODO b/TODO new file mode 100644 index 00000000..276fce41 --- /dev/null +++ b/TODO @@ -0,0 +1,21 @@ +Known issues in repmgr +====================== + +* The check for whether ``wal_keep_segments`` is considered large enough + does a string comparison rather than an integer one. It can give both + false positive (setting is large enough but flagged as too small) and + false negative (setting is too small but not noted as such) errors. + +* When running repmgr against a remote machine, operations that start + the database server using the ``pg_ctl`` command may accidentally + terminate after their associated ssh session ends. + +* After running repmgrd as a regular foreground application, hitting + control-C causes the program to crash. + +Planned feature improvements +============================ + +* Before running ``pg_start_backup()``, a sanity check that there is a + a working ssh connection to the destination would help find + configuration errors before disturbing the database.