This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".
The branch, 6.0 has been updated
via a06ca1085c49da99a9dc988af2254df21f4b3f38 (commit)
from cec32f593ab274213e0e0907ee672ba11d1be37f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a06ca1085c49da99a9dc988af2254df21f4b3f38
Author: Sylvain Beucler <[email protected]>
Date: Wed Jun 3 10:19:06 2015 +0200
scmhook: fix db issue when updating multiple repos
diff --git a/src/common/include/database-pgsql.php
b/src/common/include/database-pgsql.php
index cfafd6d..47a1aa4 100644
--- a/src/common/include/database-pgsql.php
+++ b/src/common/include/database-pgsql.php
@@ -57,6 +57,9 @@ function pg_connectstring($dbname, $user, $password = "",
$host = "", $port = ""
if ($port != "") {
$string .= " port=$port";
}
+ # using SSL breaks util_sudo_effective_user
+ # ("SSL error: decryption failed or bad record mac" for parent's new
queries)
+ $string .= " sslmode=disable";
return $string;
}
-----------------------------------------------------------------------
Summary of changes:
src/common/include/database-pgsql.php | 3 +++
1 file changed, 3 insertions(+)
diff --git a/src/common/include/database-pgsql.php
b/src/common/include/database-pgsql.php
index cfafd6d..47a1aa4 100644
--- a/src/common/include/database-pgsql.php
+++ b/src/common/include/database-pgsql.php
@@ -57,6 +57,9 @@ function pg_connectstring($dbname, $user, $password = "",
$host = "", $port = ""
if ($port != "") {
$string .= " port=$port";
}
+ # using SSL breaks util_sudo_effective_user
+ # ("SSL error: decryption failed or bad record mac" for parent's new
queries)
+ $string .= " sslmode=disable";
return $string;
}
hooks/post-receive
--
FusionForge
_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits