@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.

Add a note suggesting restarting daemons for feed.http-hooks

Summary:
I was trying to set up a http hook, but despite setting the config,
the endpoint wasn't getting a request. I was advised on IRC by balpert to
restart my daemons and it worked great after I did that.

Since this information isn't in the documentation, I am adding it to the
description of the option, so it helps the next person.

Test Plan: N/A

Reviewers: #blessed_reviewers, epriestley

Reviewed By: epriestley

CC: Korvin, epriestley, aran, spicyj

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

authored by

Anirudh Sanjeev and committed by
epriestley
44b41a94 314edcab

+4 -2
+2 -1
conf/default.conf.php
··· 941 941 // task will be created for each uri that posts the story data to the uri. 942 942 // Daemons automagically retry failures 100 times, waiting $fail_count * 60s 943 943 // between each subsequent failure. Be sure to keep the daemon console 944 - // (/daemon/) open while developing and testing your end points. 944 + // (/daemon/) open while developing and testing your end points. You may need 945 + // to restart your daemons to start sending http requests. 945 946 // 946 947 // NOTE: URIs are not validated, the URI must return http status 200 within 947 948 // 30 seconds, and no permission checks are performed.
+2 -1
src/applications/feed/config/PhabricatorFeedConfigOptions.php
··· 38 38 "story data to the uri. Daemons automagically retry failures 100 ". 39 39 "times, waiting \$fail_count * 60s between each subsequent ". 40 40 "failure. Be sure to keep the daemon console (/daemon/) open ". 41 - "while developing and testing your end points.\n\n". 41 + "while developing and testing your end points. You may need to". 42 + "restart your daemons to start sending http requests.\n\n". 42 43 "NOTE: URIs are not validated, the URI must return http status ". 43 44 "200 within 30 seconds, and no permission checks are performed.")), 44 45 );