vttranlina commented on code in PR #2514: URL: https://github.com/apache/james-project/pull/2514#discussion_r1849926161
########## backends-common/postgres/src/main/java/org/apache/james/backends/postgres/utils/PostgresExecutor.java: ########## @@ -145,8 +143,6 @@ public Flux<Record> executeDeleteAndReturnList(Function<DSLContext, DeleteResult .flatMapMany(queryFunction) .timeout(postgresConfiguration.getJooqReactiveTimeout()) .doOnError(TimeoutException.class, e -> LOGGER.error(JOOQ_TIMEOUT_ERROR_LOG, e)) - .collectList() Review Comment: The hanging issue occurs when connection-A is processing a query, and another where of the code tries to use connection-A for a different query. I guess this issue might be resolved when we using a connection pool (implemented) Wait to CI result for confirmation -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@james.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@james.apache.org For additional commands, e-mail: notifications-h...@james.apache.org