Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1p0Tqe-0005zI-1N for pgsql-jdbc@arkaria.postgresql.org; Wed, 30 Nov 2022 20:38:28 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1p0Tqa-0003ye-0O for pgsql-jdbc@arkaria.postgresql.org; Wed, 30 Nov 2022 20:38:24 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1p0TqZ-0003yT-NX for pgsql-jdbc@lists.postgresql.org; Wed, 30 Nov 2022 20:38:23 +0000 Received: from out-20.smtp.github.com ([192.30.252.203]) by magus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1p0TqV-0003je-7g for pgsql-jdbc@lists.postgresql.org; Wed, 30 Nov 2022 20:38:23 +0000 Received: from github.com (hubbernetes-node-b73311a.va3-iad.github.net [10.48.201.51]) by smtp.github.com (Postfix) with ESMTPA id 1352EE0E6A for ; Wed, 30 Nov 2022 12:38:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1669840697; bh=0ph9BiJqYTQ0c7BJvAR3VP1MzU7mfTfX9+ZkyZS2ne0=; h=Date:From:To:Subject:From; b=u5zprN2wvJJ2ozciBXEPDl6Br7kr22yy/F0/etZub4KmlTxfydqNsuRtejaYnBlfX ONsj1sYyTnh2jneaNB0W0Wo2oUf6PrUsK4DuF/KbPasWXX/nPfIi6ctp54kvveaq28 rw2GGWL+4vDv7gl3kCnY5FsIGghRARQKdGT4sg2c= Date: Wed, 30 Nov 2022 12:38:17 -0800 From: Dave Cramer To: pgsql-jdbc@lists.postgresql.org Message-ID: Subject: [pgjdbc/pgjdbc] c779e9: fix: Apply patch from Issue #2683 to fix hanging s... Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Approved: 58GruLoMopuc X-GitHub-Recipient-Address: pgsql-jdbc@lists.postgresql.org X-Auto-Response-Suppress: All List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Branch: refs/heads/master Home: https://github.com/pgjdbc/pgjdbc Commit: c779e93eaa61afadf3a6ca2f325d5157e154869f https://github.com/pgjdbc/pgjdbc/commit/c779e93eaa61afadf3a6ca2f325d5157e154869f Author: Dave Cramer Date: 2022-11-30 (Wed, 30 Nov 2022) Changed paths: M README.md M docs/content/documentation/use.md M pgjdbc/src/main/java/org/postgresql/PGProperty.java M pgjdbc/src/main/java/org/postgresql/core/v3/ConnectionFactoryImpl.java M pgjdbc/src/main/java/org/postgresql/ds/common/BaseDataSource.java Log Message: ----------- fix: Apply patch from Issue #2683 to fix hanging ssl connections (#2687) * fix: Apply patch from Issue #2683 to fix hanging ssl connections * add new configuration parameter gssResponseTimeout. This configuration parameter allows a different timeout to be used before requesting a GSS encrypted connection. Some small edits to docs