From 9e1c407ec3b2144ab228342dcf2c317e08cf0b52 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 24 Jul 2013 14:23:35 -0400 Subject: [PATCH] [manual] Rename feedback bot to zulip.com domain. Just before this is pushed to prod, we need to rename the Humbug feedback bot in the database using: ./manage.py change_user_email feedback@humbughq.com feedback@zulip.com /etc/init.d/memcached restart and we also need to update and restart feedback-bot in its deployed location. No action is required on pushing this to staging, but in between when this is pushed to staging and when it is pushed to prod (and that transition performed), feedback will not work on staging. (imported from commit 73fc36f680b978f3aebae5df1822918ae4d4e952) --- bots/feedback-bot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bots/feedback-bot b/bots/feedback-bot index 1051301..a675060 100755 --- a/bots/feedback-bot +++ b/bots/feedback-bot @@ -33,12 +33,12 @@ stderr_logger = StreamLogger(logging.getLogger("stderr"), logging.ERROR) sys.stderr = stderr_logger prod_client = humbug.Client( - email="feedback@humbughq.com", + email="feedback@zulip.com", api_key="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", verbose=True, site="https://api.humbughq.com") staging_client = humbug.Client( - email="feedback@humbughq.com", + email="feedback@zulip.com", api_key="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", verbose=True, site="https://staging.humbughq.com/api")