From a6150c29168dd6903fa703b761a8ad743945cb87 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Tue, 27 Sep 2016 17:19:33 -0700 Subject: [PATCH] Lower "waiting for activity on tasks took longer than" log level. It's perfectly normal to wait longer in several circumstances, and the output can lead to spurious regression output changes. --- src/backend/distributed/executor/multi_client_executor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/distributed/executor/multi_client_executor.c b/src/backend/distributed/executor/multi_client_executor.c index f5f0df1cc..da852d5c1 100644 --- a/src/backend/distributed/executor/multi_client_executor.c +++ b/src/backend/distributed/executor/multi_client_executor.c @@ -883,7 +883,7 @@ MultiClientWait(WaitInfo *waitInfo) } else if (rc == 0) { - ereport(DEBUG2, + ereport(DEBUG5, (errmsg("waiting for activity on tasks took longer than %ld ms", (long) RemoteTaskCheckInterval * 10))); }