Commit:    e724ad36e6350306372463aa3f69125a2b32e60c
Author:    Peter Cowburn <[email protected]>         Tue, 12 May 2020 15:12:17 
+0100
Parents:   a7f3c67dfce30446d903413bd6658008251f3634
Branches:  master

Link:       
http://git.php.net/?p=web/people.git;a=commitdiff;h=e724ad36e6350306372463aa3f69125a2b32e60c

Log:
temporarily disable fetching bugs for users (bug #79590)

Fetching from bugsweb is taking too long and timing out the downstream
connection to the CDN.

Disabling the bug listing for now until retreiving the bugs no longer
times out.

Bugs:
https://bugs.php.net/79590

Changed paths:
  M  user.php


Diff:
diff --git a/user.php b/user.php
index 7b4e99c..d893ce6 100644
--- a/user.php
+++ b/user.php
@@ -9,7 +9,7 @@ site_header("Developers Profile Pages; $USERNAME");
 $NFO      = findPHPUser($USERNAME);
 $KARMA    = findKarma($USERNAME);
 $PROFILE  = findPHPUserProfile($USERNAME);
-$BUGS     = findAssignedBugs($USERNAME);
+$BUGS     = []; // findAssignedBugs($USERNAME);
 $email    = $NFO["username"].'@php.net';
 $gravatar = "//www.gravatar.com/avatar/" . md5($email) . ".jpg?s=460";


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to