Skip to content

Commit 6176ab5

Browse files
committed
aggregate connections working - debugging cancellation memory issue
1 parent 2588695 commit 6176ab5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fdw.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ func goFdwAbortCallback() {
347347
// DO NOT call FdwError or we will recurse
348348
}
349349
}()
350-
log.Printf("[TRACE] goFdwAbortCallback")
350+
log.Printf("[WARN] goFdwAbortCallback")
351351
if pluginHub, err := hub.GetHub(); err == nil {
352352
pluginHub.Abort()
353353
}

hub/hub.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ func (h *Hub) Close() {
243243

244244
// Abort shuts down currently running queries
245245
func (h *Hub) Abort() {
246-
log.Printf("[TRACE] Hub Abort")
246+
log.Printf("[WARN] Hub Abort")
247247
// for all running iterators
248248
for _, iter := range h.runningIterators {
249249
// read the scan metadata from the iterator and add to our stack

0 commit comments

Comments
 (0)