@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

make repository tool fail a little less hard if daemons don't interact nicely

Summary: we were catching a specific exception; just catch all exceptions

Test Plan: viewed repository tool home page

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T2155

Differential Revision: https://secure.phabricator.com/D4118

+1 -1
+1 -1
src/applications/repository/controller/PhabricatorRepositoryController.php
··· 55 55 $message = 56 56 "<p>The repository daemon is not running on this machine. ". 57 57 "{$common}</p>"; 58 - } catch (CommandException $ex) { 58 + } catch (Exception $ex) { 59 59 $title = "Unable To Verify Repository Daemon"; 60 60 $message = 61 61 "<p>Unable to determine if the repository daemon is running on this ".