This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to tag REL9_3_1103 in repository libpostgresql-jdbc-java.
commit 19fe4a8586193358566c04c1ad77e6f86576321c Author: Dave Cramer <[email protected]> Date: Mon Sep 1 12:25:40 2014 +0000 Don't prevented VM shutdown if ConnectThread is blocked --- org/postgresql/Driver.java.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/org/postgresql/Driver.java.in b/org/postgresql/Driver.java.in index 96a4be7..416ef18 100644 --- a/org/postgresql/Driver.java.in +++ b/org/postgresql/Driver.java.in @@ -280,7 +280,9 @@ public class Driver implements java.sql.Driver return makeConnection(url, props); ConnectThread ct = new ConnectThread(url, props); - new Thread(ct, "PostgreSQL JDBC driver connection thread").start(); + Thread thread = new Thread(ct, "PostgreSQL JDBC driver connection thread"); + thread.setDaemon(true); // Don't prevent the VM from shutting down + thread.start(); return ct.getResult(timeout); } catch (PSQLException ex1) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libpostgresql-jdbc-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

