From b25b536629cf4e49f81438732ea0a053eb9b08b2 Mon Sep 17 00:00:00 2001 From: Chaoyi Zha Date: Thu, 18 Jun 2015 14:06:06 +0000 Subject: [PATCH] Separate fetch and remote URLs --- roles/mote/templates/config.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/roles/mote/templates/config.py b/roles/mote/templates/config.py index 7a1c4b6fa5..5dd712c2b2 100644 --- a/roles/mote/templates/config.py +++ b/roles/mote/templates/config.py @@ -16,11 +16,14 @@ log_team_folder = "teams" # an infinite loop on Fedora's meetbot instance. ignore_dir = "meetbot" -# Location where raw logs/minutes are stored. +# Location where raw logs/minutes are stored (remote) +meetbot_prefix = "http://meetbot-raw.fedoraproject.org" + +# Location to fetch raw logs/minutes from (remote or local location) # This can be a remote location, but we just so happen to have the raw # logs/minutes served off a different http endpoint on the same box, so, use # those. -meetbot_prefix = "http://localhost/meetbot" +meetbot_fetch_prefix = "http://localhost/meetbot" # Time (in seconds) after which the log/meeting cache expires cache_expire_time = 60 * 60 * 1