You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(28) |
Jun
(12) |
Jul
(11) |
Aug
(12) |
Sep
(5) |
Oct
(19) |
Nov
(14) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(18) |
Feb
(30) |
Mar
(115) |
Apr
(89) |
May
(50) |
Jun
(44) |
Jul
(22) |
Aug
(13) |
Sep
(11) |
Oct
(30) |
Nov
(28) |
Dec
(39) |
2012 |
Jan
(38) |
Feb
(18) |
Mar
(43) |
Apr
(91) |
May
(108) |
Jun
(46) |
Jul
(37) |
Aug
(44) |
Sep
(33) |
Oct
(29) |
Nov
(36) |
Dec
(15) |
2013 |
Jan
(35) |
Feb
(611) |
Mar
(5) |
Apr
(55) |
May
(30) |
Jun
(28) |
Jul
(458) |
Aug
(34) |
Sep
(9) |
Oct
(39) |
Nov
(22) |
Dec
(32) |
2014 |
Jan
(16) |
Feb
(16) |
Mar
(42) |
Apr
(179) |
May
(7) |
Jun
(6) |
Jul
(9) |
Aug
|
Sep
(4) |
Oct
|
Nov
(3) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
1
(2) |
2
(3) |
3
|
4
|
5
|
6
(2) |
7
(1) |
8
|
9
(4) |
10
|
11
|
12
|
13
|
14
(1) |
15
(1) |
16
(1) |
17
|
18
|
19
|
20
|
21
(1) |
22
|
23
|
24
(2) |
25
|
26
|
27
(2) |
28
(1) |
29
(1) |
30
(22) |
|
|
From: Koichi S. <koi...@us...> - 2011-06-07 06:27:23
|
Project "Postgres-XC". The branch, ha_support has been updated via 4b9d49a1ed74299bf09c5c59b49bd246b4cbb214 (commit) from ffcc0f293e55381f57bee8e47ec0b332f518e1e1 (commit) - Log ----------------------------------------------------------------- commit 4b9d49a1ed74299bf09c5c59b49bd246b4cbb214 Author: Koichi Suzuki <koi...@gm...> Date: Tue Jun 7 15:26:47 2011 +0900 This commit fixes potential problem of GTM reconnect operation. The patch resets file descriptor's event flag so that the file will not be read after the reconnect. Modified file is: modified: gtm/proxy/proxy_main.c diff --git a/src/gtm/proxy/proxy_main.c b/src/gtm/proxy/proxy_main.c index 4b9e122..1c50c60 100644 --- a/src/gtm/proxy/proxy_main.c +++ b/src/gtm/proxy/proxy_main.c @@ -1251,6 +1251,8 @@ GTMProxy_ThreadMain(void *argp) */ qtype = ReadCommand(thrinfo->thr_conn, &input_message); + thrinfo->thr_poll_fds[ii].revents = 0; + switch(qtype) { case 'C': ----------------------------------------------------------------------- Summary of changes: src/gtm/proxy/proxy_main.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |