summaryrefslogtreecommitdiffstats
path: root/extensions/PhabBugz/lib/Constants.pm
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/PhabBugz/lib/Constants.pm')
-rw-r--r--extensions/PhabBugz/lib/Constants.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/extensions/PhabBugz/lib/Constants.pm b/extensions/PhabBugz/lib/Constants.pm
index 754130f0b..2fd8613a0 100644
--- a/extensions/PhabBugz/lib/Constants.pm
+++ b/extensions/PhabBugz/lib/Constants.pm
@@ -16,12 +16,14 @@ our @EXPORT = qw(
PHAB_AUTOMATION_USER
PHAB_ATTACHMENT_PATTERN
PHAB_CONTENT_TYPE
- PHAB_POLL_SECONDS
+ PHAB_FEED_POLL_SECONDS
+ PHAB_USER_POLL_SECONDS
);
use constant PHAB_ATTACHMENT_PATTERN => qr/^phabricator-D(\d+)/;
use constant PHAB_AUTOMATION_USER => 'phab-bot@bmo.tld';
use constant PHAB_CONTENT_TYPE => 'text/x-phabricator-request';
-use constant PHAB_POLL_SECONDS => 5;
+use constant PHAB_FEED_POLL_SECONDS => 5;
+use constant PHAB_USER_POLL_SECONDS => 60;
1;