projects
/
postgres-xl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
92d8c81
)
Do not use ereport(ERROR) while cleaning up connections because we could
author
Pavan Deolasee
<
[email protected]
>
Thu, 15 Oct 2015 07:37:26 +0000
(13:07 +0530)
committer
Pavan Deolasee
<
[email protected]
>
Wed, 18 Nov 2015 08:31:38 +0000
(14:01 +0530)
already be an abort transaction handling, thus causing infinite recursion
src/backend/pgxc/pool/execRemote.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/pgxc/pool/execRemote.c
b/src/backend/pgxc/pool/execRemote.c
index 2c9e5b9203722d83226f817490a89d63e86b861e..55c31cff5ac7a584060278994363cd7d2c3b8eb9 100644
(file)
--- a/
src/backend/pgxc/pool/execRemote.c
+++ b/
src/backend/pgxc/pool/execRemote.c
@@
-4479,9
+4479,7
@@
pgxc_connections_cleanup(ResponseCombiner *combiner)
timeout.tv_usec = (END_QUERY_TIMEOUT % 1000) * 1000;
if (pgxc_node_receive(1, &conn, &timeout))
- ereport(ERROR,
- (errcode(ERRCODE_INTERNAL_ERROR),
- errmsg("Failed to read response from data nodes when ending query")));
+ elog(LOG, "Failed to read response from data nodes when ending query");
}
}